File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
config/internal/persistence-agent Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 55
55
- "--namespace={{.Namespace}}"
56
56
- "--mlPipelineServiceHttpPort=8888"
57
57
- "--mlPipelineServiceGRPCPort=8887"
58
+ {{ if and .CustomCABundle .PodToPodTLS }}
59
+ - "--caCertPath={{ .PiplinesCABundleMountPath }}"
60
+ {{ end }}
58
61
livenessProbe:
59
62
exec:
60
63
command:
96
99
- mountPath: /var/run/secrets/kubeflow/tokens/persistenceagent-sa-token
97
100
name: persistenceagent-sa-token
98
101
subPath: ds-pipeline-persistenceagent-{{.Name}}-token
102
+ {{ if and .CustomCABundle .PodToPodTLS }}
103
+ - mountPath: {{ .CustomCABundleRootMountPath }}
104
+ name: ca-bundle
105
+ {{ end }}
99
106
serviceAccountName: ds-pipeline-persistenceagent-{{.Name}}
100
107
volumes:
101
108
- name: persistenceagent-sa-token
@@ -105,3 +112,8 @@ spec:
105
112
audience: pipelines.kubeflow.org
106
113
expirationSeconds: 3600
107
114
path: ds-pipeline-persistenceagent-{{.Name}}-token
115
+ {{ if and .CustomCABundle .PodToPodTLS }}
116
+ - name: ca-bundle
117
+ configMap:
118
+ name: {{ .CustomCABundle.ConfigMapName }}
119
+ {{ end }}
You can’t perform that action at this time.
0 commit comments