Skip to content

Commit

Permalink
feat: fix configmap value integer
Browse files Browse the repository at this point in the history
Signed-off-by: Zufar Dhiyaullhaq <[email protected]>
  • Loading branch information
zufardhiyaulhaq committed Sep 28, 2024
1 parent 3190382 commit c5006eb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions charts/istio-upgrade-worker/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ metadata:
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
CLUSTER_NAME: {{ .Values.configuration.clusterName }}
ROLLOUT_INTERVAL_SECOND: {{ .Values.configuration.rolloutIntervalSecond }}
MAXIMUM_PERCENTAGE_ROLLOUT_SINGLE_EXECUTION: {{ .Values.configuration.maximumPercentageRolloutInSingleExecution }}
MAXIMUM_ITERATION: {{ .Values.configuration.maximumIteration }}
PRE_UPGRADE_NOTIFICATION_SECOND: {{ .Values.configuration.preUpgradeNotificationSecond }}
CLUSTER_NAME: "{{ .Values.configuration.clusterName }}"
ROLLOUT_INTERVAL_SECOND: "{{ .Values.configuration.rolloutIntervalSecond }}"
MAXIMUM_PERCENTAGE_ROLLOUT_SINGLE_EXECUTION: "{{ .Values.configuration.maximumPercentageRolloutInSingleExecution }}"
MAXIMUM_ITERATION: "{{ .Values.configuration.maximumIteration }}"
PRE_UPGRADE_NOTIFICATION_SECOND: "{{ .Values.configuration.preUpgradeNotificationSecond }}"

ENABLE_DEPLOYMENT_FREEZE: {{ .Values.configuration.enableDeploymentFreeze }}
ENABLE_DEPLOYMENT_FREEZE: "{{ .Values.configuration.enableDeploymentFreeze }}"
DEPLOYMENT_FREEZE_CONFIG_FILE_PATH: "/etc/config/deployment-freeze/deployment-freeze.yaml"
ENABLE_ROLLOUT_AT_WEEKEND: {{ .Values.configuration.enableRolloutAtWeekend }}
ENABLE_ROLLOUT_AT_WEEKEND: "{{ .Values.configuration.enableRolloutAtWeekend }}"

TIME_LOCATION: {{ .Values.configuration.timeLocation }}
TIME_FORMAT: {{ .Values.configuration.timeFormat }}
TIME_LOCATION: "{{ .Values.configuration.timeLocation }}"
TIME_FORMAT: "{{ .Values.configuration.timeFormat }}"

STORAGE_MODE: {{ .Values.configuration.storageMode }}
STORAGE_CONFIGMAP_NAME: {{ .Values.configuration.storageConfigMapName }}
STORAGE_CONFIGMAP_NAMESPACE: {{ .Values.configuration.storageConfigMapNamespace }}
STORAGE_MODE: "{{ .Values.configuration.storageMode }}"
STORAGE_CONFIGMAP_NAME: "{{ .Values.configuration.storageConfigMapName }}"
STORAGE_CONFIGMAP_NAMESPACE: "{{ .Values.configuration.storageConfigMapNamespace }}"

NOTIFICATION_MODE: {{ .Values.configuration.notificationMode }}
NOTIFICATION_MODE: "{{ .Values.configuration.notificationMode }}"

ISTIO_NAMESPACE_CANARY_LABEL: {{ .Values.configuration.istioNamespaceCanaryLabel }}
ISTIO_NAMESPACE_CANARY_LABEL: {{ .Values.configuration.istioNamespaceLabel }}
ISTIO_NAMESPACE_CANARY_LABEL: "{{ .Values.configuration.istioNamespaceCanaryLabel }}"
ISTIO_NAMESPACE_CANARY_LABEL: "{{ .Values.configuration.istioNamespaceLabel }}"
6 changes: 3 additions & 3 deletions charts/releases/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ entries:
istio-upgrade-worker:
- apiVersion: v2
appVersion: 1.0.0
created: "2024-09-28T19:59:14.036468+07:00"
digest: e7d5aae647d00c02cd7f738578c38c548026c7c4ffe9da02f0125ea25ba086f5
created: "2024-09-28T23:10:40.676696+07:00"
digest: 56c947b0804033ce999dbfabf74b6963d3aaa0cafc8ec6e239cf343930799d67
home: https://github.com/gopaytech/istio-upgrade-worker
maintainers:
- email: [email protected]
Expand All @@ -15,4 +15,4 @@ entries:
urls:
- istio-upgrade-worker-1.0.0.tgz
version: 1.0.0
generated: "2024-09-28T19:59:14.035792+07:00"
generated: "2024-09-28T23:10:40.676284+07:00"
Binary file modified charts/releases/istio-upgrade-worker-1.0.0.tgz
Binary file not shown.

0 comments on commit c5006eb

Please sign in to comment.