2021-01-17 01:09:41 +00:00
|
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
|
|
kind: CustomResourceDefinition
|
|
|
|
metadata:
|
|
|
|
name: operatorconfigurations.acid.zalan.do
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: postgres-operator
|
|
|
|
annotations:
|
|
|
|
"helm.sh/hook": crd-install
|
|
|
|
spec:
|
|
|
|
group: acid.zalan.do
|
|
|
|
names:
|
|
|
|
kind: OperatorConfiguration
|
|
|
|
listKind: OperatorConfigurationList
|
|
|
|
plural: operatorconfigurations
|
|
|
|
singular: operatorconfiguration
|
|
|
|
shortNames:
|
|
|
|
- opconfig
|
2021-02-23 00:40:14 +00:00
|
|
|
categories:
|
|
|
|
- all
|
2021-01-17 01:09:41 +00:00
|
|
|
scope: Namespaced
|
|
|
|
versions:
|
|
|
|
- name: v1
|
|
|
|
served: true
|
|
|
|
storage: true
|
|
|
|
subresources:
|
|
|
|
status: {}
|
|
|
|
additionalPrinterColumns:
|
|
|
|
- name: Image
|
|
|
|
type: string
|
|
|
|
description: Spilo image to be used for Pods
|
|
|
|
jsonPath: .configuration.docker_image
|
|
|
|
- name: Cluster-Label
|
|
|
|
type: string
|
|
|
|
description: Label for K8s resources created by operator
|
|
|
|
jsonPath: .configuration.kubernetes.cluster_name_label
|
|
|
|
- name: Service-Account
|
|
|
|
type: string
|
|
|
|
description: Name of service account to be used
|
|
|
|
jsonPath: .configuration.kubernetes.pod_service_account_name
|
|
|
|
- name: Min-Instances
|
|
|
|
type: integer
|
|
|
|
description: Minimum number of instances per Postgres cluster
|
|
|
|
jsonPath: .configuration.min_instances
|
|
|
|
- name: Age
|
|
|
|
type: date
|
|
|
|
jsonPath: .metadata.creationTimestamp
|
|
|
|
schema:
|
|
|
|
openAPIV3Schema:
|
|
|
|
type: object
|
|
|
|
required:
|
|
|
|
- kind
|
|
|
|
- apiVersion
|
|
|
|
- configuration
|
|
|
|
properties:
|
|
|
|
kind:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- OperatorConfiguration
|
|
|
|
apiVersion:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- acid.zalan.do/v1
|
|
|
|
configuration:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
docker_image:
|
|
|
|
type: string
|
2021-06-15 00:30:37 +00:00
|
|
|
default: "registry.opensource.zalan.do/acid/spilo-13:2.0-p7"
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_crd_validation:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_lazy_spilo_upgrade:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
|
|
|
enable_pgversion_env_var:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_shm_volume:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
|
|
|
enable_spilo_wal_path_compat:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
etcd_host:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: ""
|
2021-01-17 01:09:41 +00:00
|
|
|
kubernetes_use_configmaps:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
max_instances:
|
|
|
|
type: integer
|
|
|
|
minimum: -1 # -1 = disabled
|
2021-02-23 00:40:14 +00:00
|
|
|
default: -1
|
2021-01-17 01:09:41 +00:00
|
|
|
min_instances:
|
|
|
|
type: integer
|
|
|
|
minimum: -1 # -1 = disabled
|
2021-02-23 00:40:14 +00:00
|
|
|
default: -1
|
2021-01-17 01:09:41 +00:00
|
|
|
resync_period:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "30m"
|
2021-01-17 01:09:41 +00:00
|
|
|
repair_period:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "5m"
|
2021-01-17 01:09:41 +00:00
|
|
|
set_memory_request_to_limit:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
sidecar_docker_images:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
|
|
|
sidecars:
|
|
|
|
type: array
|
|
|
|
nullable: true
|
|
|
|
items:
|
|
|
|
type: object
|
2021-02-23 00:40:14 +00:00
|
|
|
x-kubernetes-preserve-unknown-fields: true
|
2021-01-17 01:09:41 +00:00
|
|
|
workers:
|
|
|
|
type: integer
|
|
|
|
minimum: 1
|
2021-02-23 00:40:14 +00:00
|
|
|
default: 8
|
2021-01-17 01:09:41 +00:00
|
|
|
users:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
replication_username:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: standby
|
2021-01-17 01:09:41 +00:00
|
|
|
super_username:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: postgres
|
2021-04-13 08:02:12 +00:00
|
|
|
major_version_upgrade:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
major_version_upgrade_mode:
|
|
|
|
type: string
|
|
|
|
default: "off"
|
|
|
|
minimal_major_version:
|
|
|
|
type: string
|
|
|
|
default: "9.5"
|
|
|
|
target_major_version:
|
|
|
|
type: string
|
|
|
|
default: "13"
|
2021-01-17 01:09:41 +00:00
|
|
|
kubernetes:
|
|
|
|
type: object
|
|
|
|
properties:
|
2021-02-23 00:40:14 +00:00
|
|
|
additional_pod_capabilities:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
2021-01-17 01:09:41 +00:00
|
|
|
cluster_domain:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "cluster.local"
|
2021-01-17 01:09:41 +00:00
|
|
|
cluster_labels:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default:
|
|
|
|
application: spilo
|
2021-01-17 01:09:41 +00:00
|
|
|
cluster_name_label:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "cluster-name"
|
2021-01-17 01:09:41 +00:00
|
|
|
custom_pod_annotations:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
|
|
|
delete_annotation_date_key:
|
|
|
|
type: string
|
|
|
|
delete_annotation_name_key:
|
|
|
|
type: string
|
|
|
|
downscaler_annotations:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
enable_init_containers:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_pod_antiaffinity:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_pod_disruption_budget:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_sidecars:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
infrastructure_roles_secret_name:
|
|
|
|
type: string
|
|
|
|
infrastructure_roles_secrets:
|
|
|
|
type: array
|
|
|
|
nullable: true
|
|
|
|
items:
|
|
|
|
type: object
|
|
|
|
required:
|
|
|
|
- secretname
|
|
|
|
- userkey
|
|
|
|
- passwordkey
|
|
|
|
properties:
|
|
|
|
secretname:
|
|
|
|
type: string
|
|
|
|
userkey:
|
|
|
|
type: string
|
|
|
|
passwordkey:
|
|
|
|
type: string
|
|
|
|
rolekey:
|
|
|
|
type: string
|
|
|
|
defaultuservalue:
|
|
|
|
type: string
|
|
|
|
defaultrolevalue:
|
|
|
|
type: string
|
|
|
|
details:
|
|
|
|
type: string
|
|
|
|
template:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
inherited_annotations:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
2021-01-17 01:09:41 +00:00
|
|
|
inherited_labels:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
master_pod_move_timeout:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "20m"
|
2021-01-17 01:09:41 +00:00
|
|
|
node_readiness_label:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
|
|
|
oauth_token_secret_name:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "postgresql-operator"
|
2021-01-17 01:09:41 +00:00
|
|
|
pdb_name_format:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "postgres-{cluster}-pdb"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_antiaffinity_topology_key:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "kubernetes.io/hostname"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_environment_configmap:
|
|
|
|
type: string
|
|
|
|
pod_environment_secret:
|
|
|
|
type: string
|
|
|
|
pod_management_policy:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- "ordered_ready"
|
|
|
|
- "parallel"
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "ordered_ready"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_priority_class_name:
|
|
|
|
type: string
|
|
|
|
pod_role_label:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "spilo-role"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_service_account_definition:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: ""
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_service_account_name:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "postgres-pod"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_service_account_role_binding_definition:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: ""
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_terminate_grace_period:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "5m"
|
2021-01-17 01:09:41 +00:00
|
|
|
secret_name_template:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "{username}.{cluster}.credentials.{tprkind}.{tprgroup}"
|
2021-04-13 08:02:12 +00:00
|
|
|
spilo_allow_privilege_escalation:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
spilo_runasuser:
|
|
|
|
type: integer
|
|
|
|
spilo_runasgroup:
|
|
|
|
type: integer
|
|
|
|
spilo_fsgroup:
|
|
|
|
type: integer
|
|
|
|
spilo_privileged:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
storage_resize_mode:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- "ebs"
|
|
|
|
- "pvc"
|
|
|
|
- "off"
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "pvc"
|
2021-01-17 01:09:41 +00:00
|
|
|
toleration:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
|
|
|
watched_namespace:
|
|
|
|
type: string
|
|
|
|
postgres_pod_resources:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
default_cpu_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "1"
|
2021-01-17 01:09:41 +00:00
|
|
|
default_cpu_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "100m"
|
2021-01-17 01:09:41 +00:00
|
|
|
default_memory_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "500Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
default_memory_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "100Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
min_cpu_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "250m"
|
2021-01-17 01:09:41 +00:00
|
|
|
min_memory_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "250Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
timeouts:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
pod_label_wait_timeout:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "10m"
|
2021-01-17 01:09:41 +00:00
|
|
|
pod_deletion_wait_timeout:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "10m"
|
2021-01-17 01:09:41 +00:00
|
|
|
ready_wait_interval:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "4s"
|
2021-01-17 01:09:41 +00:00
|
|
|
ready_wait_timeout:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "30s"
|
2021-01-17 01:09:41 +00:00
|
|
|
resource_check_interval:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "3s"
|
2021-01-17 01:09:41 +00:00
|
|
|
resource_check_timeout:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "10m"
|
2021-01-17 01:09:41 +00:00
|
|
|
load_balancer:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
custom_service_annotations:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|
|
|
|
db_hosted_zone:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "db.example.com"
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_master_load_balancer:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_replica_load_balancer:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
|
|
|
external_traffic_policy:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- "Cluster"
|
|
|
|
- "Local"
|
|
|
|
default: "Cluster"
|
2021-01-17 01:09:41 +00:00
|
|
|
master_dns_name_format:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "{cluster}.{team}.{hostedzone}"
|
2021-01-17 01:09:41 +00:00
|
|
|
replica_dns_name_format:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "{cluster}-repl.{team}.{hostedzone}"
|
2021-01-17 01:09:41 +00:00
|
|
|
aws_or_gcp:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
additional_secret_mount:
|
|
|
|
type: string
|
|
|
|
additional_secret_mount_path:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "/meta/credentials"
|
2021-01-17 01:09:41 +00:00
|
|
|
aws_region:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "eu-central-1"
|
|
|
|
enable_ebs_gp3_migration:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
enable_ebs_gp3_migration_max_size:
|
|
|
|
type: integer
|
|
|
|
default: 1000
|
2021-01-17 01:09:41 +00:00
|
|
|
gcp_credentials:
|
|
|
|
type: string
|
|
|
|
kube_iam_role:
|
|
|
|
type: string
|
|
|
|
log_s3_bucket:
|
|
|
|
type: string
|
|
|
|
wal_gs_bucket:
|
|
|
|
type: string
|
|
|
|
wal_s3_bucket:
|
|
|
|
type: string
|
|
|
|
logical_backup:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
logical_backup_docker_image:
|
|
|
|
type: string
|
2021-06-15 00:30:37 +00:00
|
|
|
default: "registry.opensource.zalan.do/acid/logical-backup:v1.6.3"
|
2021-02-23 00:40:14 +00:00
|
|
|
logical_backup_google_application_credentials:
|
|
|
|
type: string
|
|
|
|
logical_backup_job_prefix:
|
|
|
|
type: string
|
|
|
|
default: "logical-backup-"
|
|
|
|
logical_backup_provider:
|
|
|
|
type: string
|
|
|
|
default: "s3"
|
2021-01-17 01:09:41 +00:00
|
|
|
logical_backup_s3_access_key_id:
|
|
|
|
type: string
|
|
|
|
logical_backup_s3_bucket:
|
|
|
|
type: string
|
|
|
|
logical_backup_s3_endpoint:
|
|
|
|
type: string
|
|
|
|
logical_backup_s3_region:
|
|
|
|
type: string
|
|
|
|
logical_backup_s3_secret_access_key:
|
|
|
|
type: string
|
|
|
|
logical_backup_s3_sse:
|
|
|
|
type: string
|
|
|
|
logical_backup_schedule:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+|\*)(/\d+)?(\s+(\d+|\*)(/\d+)?){4}$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "30 00 * * *"
|
2021-01-17 01:09:41 +00:00
|
|
|
debug:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
debug_logging:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_database_access:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
teams_api:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
enable_admin_role_for_users:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
|
|
|
enable_postgres_team_crd:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
|
|
|
enable_postgres_team_crd_superusers:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-06-15 00:30:37 +00:00
|
|
|
enable_team_member_deprecation:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_team_superuser:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: false
|
2021-01-17 01:09:41 +00:00
|
|
|
enable_teams_api:
|
|
|
|
type: boolean
|
2021-02-23 00:40:14 +00:00
|
|
|
default: true
|
2021-01-17 01:09:41 +00:00
|
|
|
pam_configuration:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "https://info.example.com/oauth2/tokeninfo?access_token= uid realm=/employees"
|
2021-01-17 01:09:41 +00:00
|
|
|
pam_role_name:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "zalandos"
|
2021-01-17 01:09:41 +00:00
|
|
|
postgres_superuser_teams:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
protected_role_names:
|
|
|
|
type: array
|
|
|
|
items:
|
2021-01-17 01:09:41 +00:00
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default:
|
|
|
|
- admin
|
2021-06-15 00:30:37 +00:00
|
|
|
role_deletion_suffix:
|
|
|
|
type: string
|
|
|
|
default: "_deleted"
|
2021-02-23 00:40:14 +00:00
|
|
|
team_admin_role:
|
|
|
|
type: string
|
|
|
|
default: "admin"
|
|
|
|
team_api_role_configuration:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
2021-01-17 01:09:41 +00:00
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default:
|
|
|
|
log_statement: all
|
2021-01-17 01:09:41 +00:00
|
|
|
teams_api_url:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "https://teams.example.com/api/"
|
2021-01-17 01:09:41 +00:00
|
|
|
logging_rest_api:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
api_port:
|
|
|
|
type: integer
|
2021-02-23 00:40:14 +00:00
|
|
|
default: 8080
|
2021-01-17 01:09:41 +00:00
|
|
|
cluster_history_entries:
|
|
|
|
type: integer
|
2021-02-23 00:40:14 +00:00
|
|
|
default: 1000
|
2021-01-17 01:09:41 +00:00
|
|
|
ring_log_lines:
|
|
|
|
type: integer
|
2021-02-23 00:40:14 +00:00
|
|
|
default: 100
|
2021-01-17 01:09:41 +00:00
|
|
|
scalyr: # deprecated
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
scalyr_api_key:
|
|
|
|
type: string
|
|
|
|
scalyr_cpu_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "1"
|
2021-01-17 01:09:41 +00:00
|
|
|
scalyr_cpu_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "100m"
|
2021-01-17 01:09:41 +00:00
|
|
|
scalyr_image:
|
|
|
|
type: string
|
|
|
|
scalyr_memory_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "500Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
scalyr_memory_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "50Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
scalyr_server_url:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "https://upload.eu.scalyr.com"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
connection_pooler_schema:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "pooler"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_user:
|
|
|
|
type: string
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "pooler"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_image:
|
|
|
|
type: string
|
2021-04-13 08:02:12 +00:00
|
|
|
default: "registry.opensource.zalan.do/acid/pgbouncer:master-16"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_max_db_connections:
|
|
|
|
type: integer
|
2021-02-23 00:40:14 +00:00
|
|
|
default: 60
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_mode:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- "session"
|
|
|
|
- "transaction"
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "transaction"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_number_of_instances:
|
|
|
|
type: integer
|
2021-02-23 00:40:14 +00:00
|
|
|
minimum: 1
|
|
|
|
default: 2
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_default_cpu_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "1"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_default_cpu_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+m|\d+(\.\d{1,3})?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "500m"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_default_memory_limit:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "100Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
connection_pooler_default_memory_request:
|
|
|
|
type: string
|
|
|
|
pattern: '^(\d+(e\d+)?|\d+(\.\d+)?(e\d+)?[EPTGMK]i?)$'
|
2021-02-23 00:40:14 +00:00
|
|
|
default: "100Mi"
|
2021-01-17 01:09:41 +00:00
|
|
|
status:
|
|
|
|
type: object
|
|
|
|
additionalProperties:
|
|
|
|
type: string
|