107 lines
3.6 KiB
YAML
107 lines
3.6 KiB
YAML
apiVersion: "apps/v1"
|
|
kind: "Deployment"
|
|
metadata:
|
|
name: "postgres-operator-ui"
|
|
namespace: "default"
|
|
labels:
|
|
name: "postgres-operator-ui"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
name: "postgres-operator-ui"
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: "postgres-operator-ui"
|
|
spec:
|
|
serviceAccountName: postgres-operator-ui
|
|
containers:
|
|
- name: "service"
|
|
image: ghcr.io/zalando/postgres-operator-ui:v1.12.0
|
|
ports:
|
|
- containerPort: 8081
|
|
protocol: "TCP"
|
|
readinessProbe:
|
|
httpGet:
|
|
path: "/health"
|
|
port: 8081
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 1
|
|
resources:
|
|
limits:
|
|
cpu: "200m"
|
|
memory: "200Mi"
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "100Mi"
|
|
env:
|
|
- name: "APP_URL"
|
|
value: "http://localhost:8081"
|
|
- name: "OPERATOR_API_URL"
|
|
value: "http://postgres-operator:8080"
|
|
- name: "OPERATOR_CLUSTER_NAME_LABEL"
|
|
value: "cluster-name"
|
|
- name: "RESOURCES_VISIBLE"
|
|
value: "False"
|
|
- name: "TARGET_NAMESPACE"
|
|
# Set to "*" to allow viewing/creation of clusters in all namespaces
|
|
value: "default"
|
|
- name: "TEAMS"
|
|
value: |-
|
|
[
|
|
"acid"
|
|
]
|
|
- name: "OPERATOR_UI_CONFIG"
|
|
value: |-
|
|
{
|
|
"docs_link":"https://postgres-operator.readthedocs.io/en/latest/",
|
|
"dns_format_string": "{0}.{1}",
|
|
"databases_visible": true,
|
|
"master_load_balancer_visible": true,
|
|
"nat_gateways_visible": false,
|
|
"replica_load_balancer_visible": true,
|
|
"resources_visible": true,
|
|
"users_visible": true,
|
|
"cost_ebs": 0.0952,
|
|
"cost_iops": 0.006,
|
|
"cost_throughput": 0.0476,
|
|
"cost_core": 0.0575,
|
|
"cost_memory": 0.014375,
|
|
"free_iops": 3000,
|
|
"free_throughput": 125,
|
|
"limit_iops": 16000,
|
|
"limit_throughput": 1000,
|
|
"postgresql_versions": [
|
|
"16",
|
|
"15",
|
|
"14",
|
|
"13",
|
|
"12"
|
|
]
|
|
}
|
|
# Exemple of settings to make snapshot view working in the ui when using AWS
|
|
# - name: WALE_S3_ENDPOINT
|
|
# value: https+path://s3.us-east-1.amazonaws.com:443
|
|
# - name: SPILO_S3_BACKUP_PREFIX
|
|
# value: spilo/
|
|
# - name: AWS_ACCESS_KEY_ID
|
|
# valueFrom:
|
|
# secretKeyRef:
|
|
# name: <postgres operator secret with AWS token>
|
|
# key: AWS_ACCESS_KEY_ID
|
|
# - name: AWS_SECRET_ACCESS_KEY
|
|
# valueFrom:
|
|
# secretKeyRef:
|
|
# name: <postgres operator secret with AWS token>
|
|
# key: AWS_SECRET_ACCESS_KEY
|
|
# - name: AWS_DEFAULT_REGION
|
|
# valueFrom:
|
|
# secretKeyRef:
|
|
# name: <postgres operator secret with AWS token>
|
|
# key: AWS_DEFAULT_REGION
|
|
# - name: SPILO_S3_BACKUP_BUCKET
|
|
# value: <s3 bucket used by the operator>
|
|
# - name: "USE_AWS_INSTANCE_PROFILE"
|
|
# value: "true"
|