48 lines
742 B
YAML
48 lines
742 B
YAML
# Default values for podgrab.
|
|
|
|
image:
|
|
repository: akhilrex/podgrab
|
|
pullPolicy: Always
|
|
tag: latest
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
# Configure the Security Context for the Pod
|
|
podSecurityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
|
|
services:
|
|
main:
|
|
port:
|
|
port: 8080
|
|
tcp:
|
|
enabled: true
|
|
type: ClusterIP
|
|
port:
|
|
port: 51080
|
|
protocol: TCP
|
|
targetPort: 51080
|
|
|
|
env:
|
|
PASSWORD: secretpasswordgoeshere
|
|
CHECK_FREQUENCY: 240
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
emptyDir: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: ""
|
|
|
|
customStorage:
|
|
- name: assets
|
|
enabled: true
|
|
mountPath: "/assets"
|
|
emptyDir: true
|