helm show values bitnami/postgresql (stripped)

From wikieduonline
Jump to navigation Jump to search

postgresqlDataDir: /bitnami/postgresql/data
architecture: standalone # (or with replica)
readReplicas:
backup.enabled:
passwordUpdateJob:

helm show values bitnami/postgresql (stripped)[edit]

global:
  security:
    allowInsecureImages: false
  postgresql:
    auth:
      secretKeys:
    service:
      ports:
  compatibility:
    openshift:
      adaptSecurityContext: auto
  defaultFips: restricted


clusterDomain: cluster.local
diagnosticMode:
  enabled: false
  command:
    - sleep
  args:
    - infinity

image:
  registry: registry-1.docker.io
  repository: bitnami/postgresql
  tag: latest
  pullPolicy: IfNotPresent
  debug: false
auth:
  enablePostgresUser: true
  replicationUsername: repl_user
  secretKeys:
    adminPasswordKey: postgres-password
    userPasswordKey: password
    replicationPasswordKey: replication-password
    metricsPasswordKey: metrics-password
  usePasswordFiles: true
architecture: standalone
replication:
  synchronousCommit: "off"
  numSynchronousReplicas: 0
  applicationName: my_application
containerPorts:
  postgresql: 5432
audit:
  logHostname: false
  logConnections: false
  logDisconnections: false
  pgAuditLogCatalog: "off"
  clientMinMessages: error
ldap:
  enabled: false
  tls:
    enabled: false
postgresqlDataDir: /bitnami/postgresql/data
postgresqlSharedPreloadLibraries: "pgaudit"
shmVolume:
  enabled: true
tls:
  enabled: false
  autoGenerated: false
  preferServerCiphers: true
primary:
  name: primary
  initdb:
  preInitDb:
  standby:
    enabled: false
  livenessProbe:
    enabled: true
    initialDelaySeconds: 30
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  readinessProbe:
    enabled: true
    initialDelaySeconds: 5
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  startupProbe:
    enabled: false
    initialDelaySeconds: 30
    periodSeconds: 10
    timeoutSeconds: 1
    failureThreshold: 15
    successThreshold: 1
  resourcesPreset: "nano"
  fips:
  podSecurityContext:
    enabled: true
    fsGroupChangePolicy: Always
    fsGroup: 1001
  containerSecurityContext:
    enabled: true
    runAsUser: 1001
    runAsGroup: 1001
    runAsNonRoot: true
    privileged: false
    readOnlyRootFilesystem: true
    allowPrivilegeEscalation: false
    capabilities:
      drop: ["ALL"]
    seccompProfile:
      type: "RuntimeDefault"
  automountServiceAccountToken: false
  hostNetwork: false
  hostIPC: false
  podAntiAffinityPreset: soft
  nodeAffinityPreset:
  updateStrategy:
    type: RollingUpdate
  pdb:
    create: true
  networkPolicy:
    enabled: true
    allowExternal: true
    allowExternalEgress: true
  service:
    enabled: true
    type: ClusterIP
    ports:
      postgresql: 5432
    nodePorts:
    externalTrafficPolicy: Cluster
    sessionAffinity: None
    headless:
  persistence:
    enabled: true
    volumeName: "data"
    mountPath: /bitnami/postgresql
    accessModes:
      - ReadWriteOnce
    size: 8Gi
  persistentVolumeClaimRetentionPolicy:
    enabled: false
    whenScaled: Retain
    whenDeleted: Retain
readReplicas:
  name: read
  replicaCount: 1
  livenessProbe:
    enabled: true
    initialDelaySeconds: 30
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  readinessProbe:
    enabled: true
    initialDelaySeconds: 5
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  startupProbe:
    enabled: false
    initialDelaySeconds: 30
    periodSeconds: 10
    timeoutSeconds: 1
    failureThreshold: 15
    successThreshold: 1
  resourcesPreset: "nano"
  fips:
  podSecurityContext:
    enabled: true
    fsGroupChangePolicy: Always
    fsGroup: 1001
  containerSecurityContext:
    enabled: true
    runAsUser: 1001
    runAsGroup: 1001
    runAsNonRoot: true
    privileged: false
    readOnlyRootFilesystem: true
    allowPrivilegeEscalation: false
    capabilities:
      drop: ["ALL"]
    seccompProfile:
      type: "RuntimeDefault"
  automountServiceAccountToken: false
  hostNetwork: false
  hostIPC: false
  podAntiAffinityPreset: soft
  nodeAffinityPreset:
  updateStrategy:
    type: RollingUpdate
  pdb:
    create: true
  networkPolicy:
    enabled: true
    allowExternal: true
    allowExternalEgress: true
  service:
    type: ClusterIP
    ports:
      postgresql: 5432
    nodePorts:
    externalTrafficPolicy: Cluster
    sessionAffinity: None
    headless:
  persistence:
    enabled: true
    mountPath: /bitnami/postgresql
    accessModes:
      - ReadWriteOnce
    size: 8Gi
  persistentVolumeClaimRetentionPolicy:
    enabled: false
    whenScaled: Retain
    whenDeleted: Retain
backup:
  enabled: false
  cronjob:
    schedule: "@daily"
    concurrencyPolicy: Allow
    failedJobsHistoryLimit: 1
    successfulJobsHistoryLimit: 3
    restartPolicy: OnFailure
    podSecurityContext:
      enabled: true
      fsGroupChangePolicy: Always
      fsGroup: 1001
    containerSecurityContext:
      enabled: true
      runAsUser: 1001
      runAsGroup: 1001
      runAsNonRoot: true
      privileged: false
      readOnlyRootFilesystem: true
      allowPrivilegeEscalation: false
      capabilities:
        drop: ["ALL"]
      seccompProfile:
        type: "RuntimeDefault"
    command:
      - /bin/bash
      - -c
      - PGPASSWORD="${PGPASSWORD:-$(< "$PGPASSWORD_FILE")}" pg_dumpall --clean --if-exists --load-via-partition-root --quote-all-identifiers --no-password --file="${PGDUMP_DIR}/pg_dumpall-$(date '+%Y-%m-%d-%H-%M').pgdump"
    resourcesPreset: "nano"
    fips:
    networkPolicy:
      enabled: true
    storage:
      enabled: true
      accessModes:
        - ReadWriteOnce
      size: 8Gi
      mountPath: /backup/pgdump
      volumeClaimTemplates:

passwordUpdateJob:
  enabled: false
  backoffLimit: 10
  previousPasswords:
  containerSecurityContext:
    enabled: true
    runAsUser: 1001
    runAsGroup: 1001
    runAsNonRoot: true
    privileged: false
    readOnlyRootFilesystem: true
    allowPrivilegeEscalation: false
    capabilities:
      drop: ["ALL"]
    seccompProfile:
      type: "RuntimeDefault"
  podSecurityContext:
    enabled: true
    fsGroupChangePolicy: Always
    fsGroup: 1001
  resourcesPreset: "micro"
  fips:
  automountServiceAccountToken: false


volumePermissions:
  enabled: false
  image:
    registry: registry-1.docker.io
    repository: bitnami/os-shell
    tag: latest
    pullPolicy: IfNotPresent
  resourcesPreset: "nano"
  fips:
  containerSecurityContext:
    runAsUser: 0
    runAsGroup: 0
    runAsNonRoot: false
    seccompProfile:
      type: RuntimeDefault

serviceBindings:
  enabled: false
serviceAccount:
  create: true
  automountServiceAccountToken: false
rbac:
  create: false
psp:
  create: false
metrics:
  enabled: false
  image:
    registry: registry-1.docker.io
    repository: bitnami/postgres-exporter
    tag: latest
    pullPolicy: IfNotPresent
  containerSecurityContext:
    enabled: true
    runAsUser: 1001
    runAsGroup: 1001
    runAsNonRoot: true
    privileged: false
    readOnlyRootFilesystem: true
    allowPrivilegeEscalation: false
    capabilities:
      drop: ["ALL"]
    seccompProfile:
      type: "RuntimeDefault"
  livenessProbe:
    enabled: true
    initialDelaySeconds: 5
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  readinessProbe:
    enabled: true
    initialDelaySeconds: 5
    periodSeconds: 10
    timeoutSeconds: 5
    failureThreshold: 6
    successThreshold: 1
  startupProbe:
    enabled: false
    initialDelaySeconds: 10
    periodSeconds: 10
    timeoutSeconds: 1
    failureThreshold: 15
    successThreshold: 1
  containerPorts:
    metrics: 9187
  resourcesPreset: "nano"
  fips:
    golang: relaxed
  service:
    ports:
      metrics: 9187
    sessionAffinity: None
    annotations:
      prometheus.io/scrape: "true"
      prometheus.io/port: "{{ .Values.metrics.service.ports.metrics }}"
  serviceMonitor:
    enabled: false
    honorLabels: false
  prometheusRule:
    enabled: false


helm install postgresql, helm show values bitnami/postgresql

Advertising: