Skip to content

Commit

Permalink
aci 36:Updating the image version and index (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevan-kamkar authored Sep 29, 2021
1 parent a28ce44 commit ba13f10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ else
fi


/usr/bin/docker build -f install/Docker/dockerfiles/Dockerfile.aciplugin -t aciplugin:1.0 $build_args .
/usr/bin/docker build -f install/Docker/dockerfiles/Dockerfile.aciplugin -t aciplugin:2.0 $build_args .
4 changes: 2 additions & 2 deletions caphandler/zones.go
Original file line number Diff line number Diff line change
Expand Up @@ -1227,8 +1227,8 @@ func checkEndpointExits(enpointURL string, zonesData map[string]model.Zone, zone
for i := 0; i < len(zoneofZoneData.Links.ContainsZones); i++ {
if zoneofZoneData.Links.ContainsZones[i].Oid != zoeURL {
zoneData := zonesData[zoneofZoneData.Links.ContainsZones[i].Oid]
for i := 0; i < len(zoneData.Links.Endpoints); i++ {
if zoneData.Links.Endpoints[i].Oid == enpointURL {
for j := 0; j < len(zoneData.Links.Endpoints); j++ {
if zoneData.Links.Endpoints[j].Oid == enpointURL {
return true
}
}
Expand Down
4 changes: 2 additions & 2 deletions install/Kubernetes/helmcharts/aciplugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 2.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 1.0.0
appVersion: 2.0.0
2 changes: 1 addition & 1 deletion install/Kubernetes/helmcharts/aciplugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ odimra:
haDeploymentEnabled:
aciplugin:
eventListenerNodePort:
imageTag: "1.0"
imageTag: "2.0"
aciPluginRootServiceUUID:
username:
password:
Expand Down

0 comments on commit ba13f10

Please sign in to comment.