Skip to content

Commit

Permalink
Release notes 0.1.4 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sravyap135 authored Jul 14, 2021
1 parent 55fa8b5 commit 9f505dd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
10 changes: 6 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variables:
quayConnection: 'quay-bot'
redhatConnection: 'redhat-bot'
dockerConnection: 'docker-bot'
scanConnection: 'scan-bot'
scanConnection: 'fic-scan-bot'
quay_path: 'quay.io/f5networks/f5-ipam-controller-devel'
redhat_prj_name: 'f5-ipam-controller'
redhat_tag: '$(BUILD_VERSION)-rhel8'
Expand All @@ -39,11 +39,13 @@ steps:
containerRegistry: $(quayConnection)
- task: Docker@2
displayName: Login to docker registry
condition: startsWith(variables['build.sourceBranch'], 'refs/tags/')
inputs:
command: login
containerRegistry: $(dockerConnection)
- task: Docker@2
displayName: Login to scan registry
condition: startsWith(variables['build.sourceBranch'], 'refs/tags/')
inputs:
command: login
containerRegistry: $(scanConnection)
Expand All @@ -58,7 +60,7 @@ steps:
tags: $(Build.SourceVersion)
arguments: "--build-arg BUILD_INFO=azure-$(Build.BuildId)-$(Build.SourceVersion) --build-arg BUILD_VERSION=$(BUILD_VERSION) --build-arg RUN_TESTS=$(RUN_TESTS)"
- task: Docker@2
displayName: Push image to quay.io
displayName: Push image to Quay
inputs:
command: push
containerRegistry: $(quayConnection)
Expand All @@ -70,7 +72,7 @@ steps:
podman tag $(quay_path):$(Build.SourceVersion) scan.connect.redhat.com/$(REDHAT_PRJ_ID)/$(redhat_prj_name):$(redhat_tag)
podman push --authfile $(DOCKER_CONFIG)/config.json scan.connect.redhat.com/$(REDHAT_PRJ_ID)/$(redhat_prj_name):$(redhat_tag)
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/'))
displayName: 'Publish to Redhat'
displayName: 'Push to Redhat'
continueOnError: true
- script: |
set -ex
Expand All @@ -84,5 +86,5 @@ steps:
fi
docker push $(docker_repo):latest
docker push $(docker_repo):$(docker_version)
displayName: 'Publish to DockerHub'
displayName: 'Push to DockerHub'
condition: startsWith(variables['build.sourceBranch'], 'refs/tags/')
11 changes: 9 additions & 2 deletions docs/RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Release Notes for F5 IPAM Controller for Kubernetes & OpenShift
=======================================================================

Next Release
0.1.4
------------
Added Functionality
```````````````````
* Add New Provider Infoblox with IPV4 Support
* F5 IPAM Controller supports InfoBlox (Preview - Available for VirtualServer CR only. See `documentation <https://github.com/F5Networks/f5-ipam-controller/blob/main/README.md>`_).

Known Issues
```````````
* With InfoBlox integration,
* FIC restart allocates multiple IP addresses on InfoBlox
* Update ip-range is not working as expected
* TransportServer CR and Service Type LoadBalancer are not supported

0.1.3
-------------
Expand Down

0 comments on commit 9f505dd

Please sign in to comment.