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.
48 lines
1.3 KiB
48 lines
1.3 KiB
apiVersion: v1 |
|
kind: Pod |
|
metadata: |
|
name: image-debug-with-mount |
|
namespace: pct-security-tooling |
|
spec: |
|
serviceAccountName: deployer |
|
containers: |
|
- command: |
|
- /bin/sh |
|
image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7f0ed1d2500a005e8e134920085ec6b28770b915b0449d45c4a44fbec818f33f |
|
name: debug-with-mount |
|
volumeMounts: |
|
- name: osh-wrapper |
|
mountPath: /mounts/kerberos |
|
- name: osh-wrapper-config-vol |
|
mountPath: /mounts/wraper-config |
|
- name: osh-client-sources |
|
mountPath: /mounts/osh-client-sources |
|
- name: osh-client-tgz |
|
mountPath: /mounts/osh-client-tgz |
|
resources: {} |
|
securityContext: {} |
|
stdin: true |
|
stdinOnce: true |
|
tty: true |
|
restartPolicy: Never |
|
volumes: |
|
- name: osh-wrapper |
|
secret: |
|
defaultMode: 384 |
|
optional: false |
|
secretName: kerberos-keytab-osh |
|
- configMap: |
|
defaultMode: 384 |
|
items: |
|
- key: linux-krb5.conf |
|
path: linux-krb5.conf |
|
name: kerberos-config |
|
optional: false |
|
name: osh-wrapper-config-vol |
|
- name: osh-client-sources |
|
persistentVolumeClaim: |
|
claimName: osh-client-sources |
|
- name: osh-client-tgz |
|
persistentVolumeClaim: |
|
claimName: osh-client-source-tars |
|
|
|
|