Skip to content

Commit 82fea31

Browse files
committed
Fixup helm charts and add cli install
Signed-off-by: Jeroen van Erp <[email protected]>
1 parent 4f55817 commit 82fea31

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/ai-model/templates/ai-model-deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ spec:
1414
template:
1515
metadata:
1616
labels:
17-
{{- include "common.labels" . | nindent 8 }}
18-
service: ai-model
17+
{{- include "common.labels" . | nindent 8 }}
18+
service: ai-model
1919
annotations:
2020
checksum/config: '{{ include (print $.Template.BasePath "/ai-model-cm.yaml") . | sha256sum}}'
2121
spec:
@@ -28,7 +28,7 @@ spec:
2828
ports:
2929
- containerPort: 8080
3030
resources:
31-
{{- toYaml .Values.resources | nindent 12 }}
31+
{{- toYaml .Values.resources | nindent 12 }}
3232
volumeMounts:
3333
- name: config-volume
3434
mountPath: /etc/app

charts/ai-model/templates/ai-model-svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
spec:
99
selector:
1010
service: ai-model
11-
{{- include "common.selectorLabels" . | nindent 4 }}
11+
{{- include "common.selectorLabels" . | nindent 4 }}
1212
ports:
1313
- protocol: TCP
1414
port: 80 # Service port

scripts/observability/cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#######################################
66
observability_install_cli() {
77
if ! [ -x "$(command -v sts)" ]; then
8-
curl -o- https://dl.stackstate.com/stackstate-cli/install.sh | STS_CLI_LOCATION=/usr/local/bin bash
8+
curl -s -o- https://dl.stackstate.com/stackstate-cli/install.sh | STS_CLI_LOCATION=/usr/local/bin bash
99
else
1010
echo ">>> sts CLI already installed"
1111
fi

0 commit comments

Comments
 (0)