You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
692 B
25 lines
692 B
apiVersion: kubeflow.org/v1alpha1
|
|
kind: PodDefault
|
|
metadata:
|
|
name: access-ml-pipeline
|
|
namespace: kubeflow-user-example-com
|
|
spec:
|
|
desc: Allow access to Kubeflow Pipelines
|
|
selector:
|
|
matchLabels:
|
|
access-ml-pipeline: "true"
|
|
env:
|
|
- name: KF_PIPELINES_SA_TOKEN_PATH
|
|
value: /var/run/secrets/kubeflow/pipelines/token
|
|
volumes:
|
|
- name: volume-kf-pipeline-token
|
|
projected:
|
|
sources:
|
|
- serviceAccountToken:
|
|
path: token
|
|
expirationSeconds: 7200
|
|
audience: pipelines.kubeflow.org
|
|
volumeMounts:
|
|
- mountPath: /var/run/secrets/kubeflow/pipelines
|
|
name: volume-kf-pipeline-token
|
|
readOnly: true
|
|
|