This PR contains the following updates: | Package | Update | Change | |---|---|---| | dpage/pgadmin4 | minor | `9.7` -> `9.8` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4zNS4wIiwidXBkYXRlZEluVmVyIjoiNDEuMzUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=--> Reviewed-on: #1387 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
pgadmin4:
 | 
						|
  controllers:
 | 
						|
    main:
 | 
						|
      type: deployment
 | 
						|
      replicas: 1
 | 
						|
      strategy: Recreate
 | 
						|
      initContainers:
 | 
						|
        init-chmod-data:
 | 
						|
          securityContext:
 | 
						|
            runAsUser: 0
 | 
						|
          image:
 | 
						|
            repository: busybox
 | 
						|
            tag: 1.37.0
 | 
						|
            pullPolicy: IfNotPresent
 | 
						|
          command:
 | 
						|
            - /bin/sh
 | 
						|
            - -ec
 | 
						|
            - |
 | 
						|
              /bin/chown -R 5050:5050 /var/lib/pgadmin
 | 
						|
          resources:
 | 
						|
            requests:
 | 
						|
              cpu: 10m
 | 
						|
              memory: 128Mi
 | 
						|
      containers:
 | 
						|
        main:
 | 
						|
          securityContext:
 | 
						|
            runAsUser: 5050
 | 
						|
            runAsGroup: 5050
 | 
						|
          image:
 | 
						|
            repository: dpage/pgadmin4
 | 
						|
            tag: "9.8"
 | 
						|
            pullPolicy: IfNotPresent
 | 
						|
          env:
 | 
						|
            - name: PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION
 | 
						|
              value: "False"
 | 
						|
            - name: PGADMIN_DEFAULT_EMAIL
 | 
						|
              value: alexanderlebens@gmail.com
 | 
						|
            - name: PGADMIN_DEFAULT_PASSWORD
 | 
						|
              valueFrom:
 | 
						|
                secretKeyRef:
 | 
						|
                  name: pgadmin-password-secret
 | 
						|
                  key: pgadmin-password
 | 
						|
          envFrom:
 | 
						|
            - secretRef:
 | 
						|
                name: pgadmin-env-secret
 | 
						|
          resources:
 | 
						|
            requests:
 | 
						|
              cpu: 10m
 | 
						|
              memory: 256Mi
 | 
						|
  service:
 | 
						|
    main:
 | 
						|
      controller: main
 | 
						|
      ports:
 | 
						|
        http:
 | 
						|
          port: 80
 | 
						|
          targetPort: 80
 | 
						|
          protocol: TCP
 | 
						|
  persistence:
 | 
						|
    data:
 | 
						|
      forceRename: pgadmin4-data
 | 
						|
      storageClass: ceph-block
 | 
						|
      accessMode: ReadWriteOnce
 | 
						|
      size: 5Gi
 | 
						|
      retain: true
 | 
						|
      advancedMounts:
 | 
						|
        main:
 | 
						|
          init-chmod-data:
 | 
						|
            - path: /var/lib/pgadmin
 | 
						|
              readOnly: false
 | 
						|
          main:
 | 
						|
            - path: /var/lib/pgadmin
 | 
						|
              readOnly: false
 |