diff --git a/charts/main/Chart.yaml b/charts/main/Chart.yaml index f790263..b5d223a 100644 --- a/charts/main/Chart.yaml +++ b/charts/main/Chart.yaml @@ -13,9 +13,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.3.4 +version: 0.3.5 # 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. # It is recommended to use it with quotes. -appVersion: 0.3.4 +appVersion: 0.3.5 diff --git a/charts/main/templates/controller/deployment.yaml b/charts/main/templates/controller/deployment.yaml index a0dbd72..f83a71d 100644 --- a/charts/main/templates/controller/deployment.yaml +++ b/charts/main/templates/controller/deployment.yaml @@ -57,8 +57,6 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - - name: PHONEBOOK_PROVIDER - value: {{ required "A Provider needs to be specified: https://pier-oliviert.github.io/phonebook/providers/" .Values.provider }} {{- range .Values.controller.env }} - name: {{ .name | quote }} value: {{ toYaml .value }} diff --git a/charts/main/values.yaml b/charts/main/values.yaml index f27f63b..44fb8d9 100644 --- a/charts/main/values.yaml +++ b/charts/main/values.yaml @@ -8,4 +8,4 @@ solver: name: phonebook-solver controller: - image: "ghcr.io/pier-oliviert/phonebook:v0.2" + image: "ghcr.io/pier-oliviert/phonebook:v0.3.5" diff --git a/pkg/providers/provider.go b/pkg/providers/provider.go index a380677..7d0cd7c 100644 --- a/pkg/providers/provider.go +++ b/pkg/providers/provider.go @@ -41,8 +41,8 @@ type Provider interface { var ProviderImages = map[string]string{ - "aws": "ghcr.io/pier-oliviert/providers-aws:v0.3.4", - "azure": "ghcr.io/pier-oliviert/providers-azure:v0.3.4", - "cloudflare": "ghcr.io/pier-oliviert/providers-cloudflare:v0.3.4", - "desec": "ghcr.io/pier-oliviert/providers-desec:v0.3.4", + "aws": "ghcr.io/pier-oliviert/providers-aws:v0.3.5", + "azure": "ghcr.io/pier-oliviert/providers-azure:v0.3.5", + "cloudflare": "ghcr.io/pier-oliviert/providers-cloudflare:v0.3.5", + "desec": "ghcr.io/pier-oliviert/providers-desec:v0.3.5", }