Skip to content

Commit

Permalink
(BAOBAB) Hotfix sync error api (#180)
Browse files Browse the repository at this point in the history
fix: Modify name in templates to use name from values.yaml
  • Loading branch information
jay-bisonai authored Feb 16, 2024
1 parent 4d66897 commit 77285d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
name: {{ .Values.deployment.name }}
labels:
app: {{ .Values.deployment.name }}
app.kubernetes.io/name: {{ .Values.deployment.name }}
Expand Down
2 changes: 1 addition & 1 deletion api/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: Service
metadata:
name: orakl-api
name: {{ .Values.deployment.name }}
spec:
type: ClusterIP
ports:
Expand Down

0 comments on commit 77285d8

Please sign in to comment.