Sign inSign up

cclient/konga

By cclient

Updated about 4 years ago

Image
0

91

cclient/konga repository overview

https://github.com/vichaos/konga/pull/3/commits/67fbe5c208dc756aa93c6ee0aae8555ce329a6d4

build from https://github.com/vichaos/konga

support postgres-12-or-newer

-e "DB_IS_PG12_OR_NEWER=true"


apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    app: konga
  name: konga
spec:
  replicas: 1
  selector:
    matchLabels:
      app: konga
  template:
    metadata:
      labels:
        app: konga
    spec:
      containers:
      - env:
        - name: HOST
          value: 0.0.0.0
        - name: PORT
          value: "80"
        - name: NODE_ENV
          value: production
        - name: DB_ADAPTER
          value: postgres
        - name: DB_HOST
          value: ######
        - name: DB_PORT
          value: "5432"
        - name: DB_USER
          value: ######
        - name: DB_PASSWORD
          value: ######
        - name: DB_DATABASE
          value: k8s-konga
        - name: NO_AUTH
          value: "false"
        - name: DB_IS_PG12_OR_NEWER
          value: "true"
        image: cclient/konga:0.14.9-pg12
        imagePullPolicy: IfNotPresent
        name: konga
        ports:
        - containerPort: 80
          protocol: TCP

Tag summary

Content type

Image

Digest

sha256:7da77ddc4

Size

162.2 MB

Last updated

about 4 years ago

docker pull cclient/konga:0.14.9-pg12