Skip to content
Snippets Groups Projects
Select Git revision
  • 3b5c20198f5dfd33bc13a0b67ca77e26e9dc8b29
  • master default protected
  • gh-pages
  • groundhog2k/issue1235
  • vip-codimd
  • ghost-0.167.2
  • ghost-0.167.1
  • ghost-0.167.0
  • gitea-0.13.3
  • postgres-1.5.5
  • nextcloud-0.19.6
  • ghost-0.166.2
  • ghost-0.166.1
  • redis-2.0.3
  • redis-1.3.6
  • redis-1.2.6
  • redis-1.0.5
  • valkey-2.1.0
  • valkey-1.0.4
  • valkey-2.0.1
  • graylog-0.11.0
  • graylog-0.10.4
  • ghost-0.166.0
  • rabbitmq-2.1.2
  • ghost-0.165.0
25 results

values.yaml

Blame
  • user avatar
    Göran Pöhner authored and GitHub committed
    0f02a76f
    History
    values.yaml 5.30 KiB
    ## Default values for PostgreSQL deployment
    
    ## PostgreSQL docker image
    image:
      registry: "docker.io"
      repository: "postgres"
      pullPolicy: IfNotPresent
      # Overrides the image tag whose default is the chart appVersion.
      tag: ""
    
    ## Pull secrets and name override options
    imagePullSecrets: []
    nameOverride: ""
    fullnameOverride: ""
    
    ## Optional service account
    serviceAccount:
      # Specifies whether a service account should be created
      create: false
      # Annotations to add to the service account
      annotations: {}
      # The name of the service account to use.
      # If not set and create is true, a name is generated using the fullname template
      name: ""
    
    ## Additional pod annotations
    podAnnotations: {}
    
    ## Pod management policy
    podManagementPolicy: OrderedReady
    
    ## Pod update strategy
    updateStrategyType: RollingUpdate
    
    ## Pod security context uses file system group 999 (postgres)
    podSecurityContext:
      fsGroup: 999
    
    ## Default security options to run PostgreSQL as non-root (postgres user), read only container without privilege escalation
    securityContext:
      allowPrivilegeEscalation: false
      privileged: false
      readOnlyRootFilesystem: true
      runAsNonRoot: true
      runAsGroup: 999
      runAsUser: 999
    
    ## The postgres service configuration (Default is ClusterIP with port 5432)
    service:
      type: ClusterIP
      port: 5432
      ## The node port (only relevant for type LoadBalancer or NodePort)
      nodePort:
      ## The cluster ip address (only relevant for type LoadBalancer or NodePort)
      clusterIP:
      ## The loadbalancer ip address (only relevant for type LoadBalancer)
      loadBalancerIP:
      # Annotations to add to the service
      annotations: {}
    
    resources: {}
      # limits:
      #   cpu: 100m
      #   memory: 128Mi
      # requests:
      #   cpu: 100m
      #   memory: 128Mi
    
    ## Additional node selector
    nodeSelector: {}