mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 10:22:54 +02:00
42 lines
847 B
YAML
42 lines
847 B
YAML
# apiVersion: apps/v1
|
|
# kind: Deployment
|
|
# metadata:
|
|
# name: pgadmin
|
|
# spec:
|
|
# selector:
|
|
# matchLabels:
|
|
# app: pgadmin
|
|
# replicas: 1
|
|
# template:
|
|
# metadata:
|
|
# labels:
|
|
# app: pgadmin
|
|
# spec:
|
|
# containers:
|
|
# - name: pgadmin4
|
|
# image: dpage/pgadmin4
|
|
# env:
|
|
# - name: PGADMIN_DEFAULT_EMAIL
|
|
# value: "admin@admin.com"
|
|
# - name: PGADMIN_DEFAULT_PASSWORD
|
|
# value: adminpassword
|
|
# - name: PGADMIN_PORT
|
|
# value: "80"
|
|
# ports:
|
|
# - containerPort: 80
|
|
# name: pgadminport
|
|
# ---
|
|
# apiVersion: v1
|
|
# kind: Service
|
|
# metadata:
|
|
# name: pgadmin
|
|
# labels:
|
|
# app: pgadmin
|
|
# spec:
|
|
# selector:
|
|
# app: pgadmin
|
|
# type: NodePort
|
|
# ports:
|
|
# - port: 80
|
|
# nodePort: 30200
|