Skip to content

Commit 99adafa

Browse files
authored
Merge pull request #437 from jetstack/pf/volume-fix
bug: Fix deployment template for configmap volume
2 parents ae4da81 + 15f8d1d commit 99adafa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

deploy/charts/jetstack-agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: jetstack-agent
33
description: Jetstack Secure Agent
44
type: application
5-
version: 0.2.0
5+
version: 0.2.1
66
appVersion: "v0.1.39"
77
home: https://github.com/jetstack/jetstack-secure
88
maintainers:
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
1. Please make sure you have the credentials secret: "{{ .Values.authentication.secretName }}" available
2+
> kubectl get secret -n {{ .Release.Namespace }} {{ .Values.authentication.secretName }}
23

34
2. Check the application is running with the following:
45
> kubectl get pods -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}
56

67
3. Check the application logs for successful connection to the platform:
7-
> kubectl logs -n {{ .Release.Namespace }} $(kubectl get pod -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}-o jsonpath='{.items[0].metadata.name}')
8+
> kubectl logs -n {{ .Release.Namespace }} $(kubectl get pod -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }} -o jsonpath='{.items[0].metadata.name}')

deploy/charts/jetstack-agent/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
- name: config
7878
configMap:
7979
name: agent-config
80-
options: false
80+
optional: false
8181
- name: credentials
8282
secret:
8383
secretName: {{ default "agent-credentials" .Values.authentication.secretName }}

0 commit comments

Comments
 (0)