Skip to content

Commit

Permalink
Merge pull request #170 from srl-labs/fix/chart-selectors
Browse files Browse the repository at this point in the history
Fix/chart selectors
  • Loading branch information
carlmontanari committed Aug 22, 2024
2 parents 44df77f + 3358390 commit b564b08
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions charts/clabernetes/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ spec:
matchLabels:
clabernetes/app: {{ .Values.appName }}
release: {{ .Release.Name }}
clabernetes/component: manager
replicas: {{ .Values.manager.replicaCount }}
strategy:
rollingUpdate:
Expand Down Expand Up @@ -169,6 +170,7 @@ spec:
matchLabels:
clabernetes/app: {{ $.Values.appName }}
release: {{ .Release.Name }}
clabernetes/component: ui
replicas: {{ $.Values.ui.replicaCount }}
strategy:
rollingUpdate:
Expand Down Expand Up @@ -244,6 +246,9 @@ spec:
limits:
{{ toYaml $.Values.ui.resources.limits | indent 14 }}
{{- end }}
env:
- name: HOSTNAME
value: "0.0.0.0"
ports:
- name: http
containerPort: 3000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes-plus-clicker
release: release-name
clabernetes/component: manager
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -162,6 +163,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes-plus-clicker
release: release-name
clabernetes/component: ui
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -214,6 +216,9 @@ spec:
requests:
memory: 128Mi
cpu: 50m
env:
- name: HOSTNAME
value: "0.0.0.0"
ports:
- name: http
containerPort: 3000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes
release: release-name
clabernetes/component: manager
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -153,6 +154,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes
release: release-name
clabernetes/component: ui
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -200,6 +202,9 @@ spec:
requests:
memory: 128Mi
cpu: 50m
env:
- name: HOSTNAME
value: "0.0.0.0"
ports:
- name: http
containerPort: 3000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes
release: release-name
clabernetes/component: manager
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -147,6 +148,7 @@ spec:
matchLabels:
clabernetes/app: clabernetes
release: release-name
clabernetes/component: ui
replicas: 3
strategy:
rollingUpdate:
Expand Down Expand Up @@ -194,6 +196,9 @@ spec:
requests:
memory: 128Mi
cpu: 50m
env:
- name: HOSTNAME
value: "0.0.0.0"
ports:
- name: http
containerPort: 3000
Expand Down

0 comments on commit b564b08

Please sign in to comment.