Skip to content

Commit

Permalink
Merge pull request #37 from kube-tarian/tls-change-revert
Browse files Browse the repository at this point in the history
Changed the argocd serice url format
  • Loading branch information
share2kanna authored Jan 22, 2023
2 parents f82cbf6 + 96e56ff commit 7bb5c62
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/kad/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.2
version: 0.1.3

# 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
Expand Down
7 changes: 5 additions & 2 deletions charts/kad/templates/config-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ spec:
- name: PORT
value: "{{ .Values.service.port }}"
- name: ARGOCD_SERVICE_URL
value: {{ .Values.argocd.serviceURL }}
value: "{{ .Values.argocd.serviceURL }}"
- name: ARGOCD_PASSWORD
value: {{ .Values.argocd.password }}
valueFrom:
secretKeyRef:
name: "argocd-initial-admin-secret"
key: "password"
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
2 changes: 1 addition & 1 deletion charts/kad/templates/deployment-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
- name: PORT
value: "{{ .Values.service.port }}"
- name: ARGOCD_SERVICE_URL
value: "{{ .Values.argocd.serviceURL }}.{{ .Release.Namespace }}.svc.cluster.local"
value: "{{ .Values.argocd.serviceURL }}"
- name: ARGOCD_PASSWORD
valueFrom:
secretKeyRef:
Expand Down
3 changes: 1 addition & 2 deletions charts/kad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ temporal:
temporalServiceURL: temporal-frontend

argocd:
serviceURL: argocd-server
password: to-be-replaced
serviceURL: argocd-server.default.svc.cluster.local

# TODO: attributes to be added
cassandra:
2 changes: 1 addition & 1 deletion charts/server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.2
version: 0.1.3

# 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
Expand Down

0 comments on commit 7bb5c62

Please sign in to comment.