Created
August 23, 2024 20:14
-
-
Save soenkeliebau/012933747e5f2da9041c67e5abdafe15 to your computer and use it in GitHub Desktop.
Gravitino pod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: gravitino | |
spec: | |
containers: | |
- name: gravitino | |
env: | |
- name: KERBEROS_REALM | |
value: KNAB.COM | |
image: datastrato/gravitino:latest | |
volumeMounts: | |
- mountPath: /stackable/kerberos | |
name: kerberos | |
- mountPath: /etc/krb5.conf | |
name: kerberos | |
subPath: krb5.conf | |
ports: | |
- containerPort: 8090 | |
volumes: | |
- name: kerberos | |
ephemeral: | |
volumeClaimTemplate: | |
metadata: | |
annotations: | |
secrets.stackable.tech/class: kerberos | |
secrets.stackable.tech/kerberos.service.names: gravitino | |
secrets.stackable.tech/scope: service=gravitino | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
storageClassName: secrets.stackable.tech | |
resources: | |
requests: | |
storage: "1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment