Skip to content

Commit 767a57b

Browse files
committed
chore: generate docs
Signed-off-by: YanniHu1996 <[email protected]>
1 parent d2da2de commit 767a57b

File tree

5 files changed

+34
-5
lines changed

5 files changed

+34
-5
lines changed

charts/edb-postgres-distributed-for-kubernetes/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# edb-postgres-distributed-for-kubernetes
22

3-
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square)
3+
![Version: 1.1.1](https://img.shields.io/badge/Version-1.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square)
44

55
EDB Postgres Distributed for Kubernetes Helm Chart
66

@@ -23,7 +23,7 @@ EDB Postgres Distributed for Kubernetes Helm Chart
2323

2424
| Repository | Name | Version |
2525
|------------|------|---------|
26-
| | edb-postgres-for-kubernetes-lts | 0.25.0 |
26+
| | edb-postgres-for-kubernetes-lts | 0.25.1 |
2727
| https://charts.jetstack.io | cert-manager | 1.16.1 |
2828

2929
## Values
@@ -49,9 +49,9 @@ EDB Postgres Distributed for Kubernetes Helm Chart
4949
| edb-postgres-for-kubernetes-lts.enabled | bool | `true` | |
5050
| edb-postgres-for-kubernetes-lts.image.repository | string | `""` | Specifies the repository of the pg4k operator image, this will overwrite the global repository |
5151
| fullnameOverride | string | `""` | |
52-
| global | object | `{"pgdImageName":"postgresql-pgd:17.2-5.6.1-1","proxyImageName":"edb-pgd-proxy:5.6.0","repository":"docker.enterprisedb.com/k8s_enterprise_pgd"}` | Global values |
52+
| global | object | `{"pgdImageName":"postgresql-pgd:17.2-5.6.1-1","proxyImageName":"edb-pgd-proxy:5.7.0-1","repository":"docker.enterprisedb.com/k8s_enterprise_pgd"}` | Global values |
5353
| global.pgdImageName | string | `"postgresql-pgd:17.2-5.6.1-1"` | Specifies the pgd image name to be used for the operator, the image will be downloaded from global repository |
54-
| global.proxyImageName | string | `"edb-pgd-proxy:5.6.0"` | Specifies the pgd-proxy image name to be used for the operator, the image will be downloaded from global repository |
54+
| global.proxyImageName | string | `"edb-pgd-proxy:5.7.0-1"` | Specifies the pgd-proxy image name to be used for the operator, the image will be downloaded from global repository |
5555
| global.repository | string | `"docker.enterprisedb.com/k8s_enterprise_pgd"` | Specifies the repository where the operator and operand image to be downloaded from repository: docker.enterprisedb.com/k8s_standard_pgd |
5656
| hostNetwork | bool | `false` | |
5757
| image | object | `{"imageCredentials":{"create":true,"name":"edb-pull-secret","password":"","registry":"docker.enterprisedb.com","username":""},"imageName":"pg4k-pgd","imagePullPolicy":"IfNotPresent","imageTag":"","repository":""}` | operator image configuration |
@@ -88,6 +88,8 @@ EDB Postgres Distributed for Kubernetes Helm Chart
8888
| webhook.port | int | `9443` | |
8989
| webhook.readinessProbe.initialDelaySeconds | int | `15` | |
9090
| webhook.readinessProbe.periodSeconds | int | `20` | |
91+
| webhook.startupProbe.failureThreshold | int | `6` | |
92+
| webhook.startupProbe.periodSeconds | int | `5` | |
9193
| webhook.validating.create | bool | `true` | |
9294
| webhook.validating.failurePolicy | string | `"Fail"` | |
9395

charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# edb-postgres-for-kubernetes-lts
22

3-
![Version: 0.25.0](https://img.shields.io/badge/Version-0.25.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.25.0](https://img.shields.io/badge/AppVersion-1.25.0-informational?style=flat-square)
3+
![Version: 0.25.1](https://img.shields.io/badge/Version-0.25.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.25.1](https://img.shields.io/badge/AppVersion-1.25.1-informational?style=flat-square)
44

55
EDB Postgres for Kubernetes LTS release Helm Chart
66

charts/edb-postgres-distributed-for-kubernetes/templates/deployment.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,19 @@ spec:
119119
{{- toYaml .Values.resources | nindent 10 }}
120120
securityContext:
121121
{{- toYaml .Values.containerSecurityContext | nindent 10 }}
122+
123+
startupProbe:
124+
{{- if .Values.webhook.startupProbe.failureThreshold }}
125+
failureThreshold: {{ .Values.webhook.startupProbe.failureThreshold }}
126+
{{- end }}
127+
httpGet:
128+
path: /readyz
129+
port: {{ .Values.webhook.port }}
130+
scheme: HTTPS
131+
{{- if .Values.webhook.startupProbe.periodSeconds }}
132+
periodSeconds: {{ .Values.webhook.startupProbe.periodSeconds }}
133+
{{- end }}
134+
122135
volumeMounts:
123136
- mountPath: /controller
124137
name: scratch-data

charts/edb-postgres-distributed-for-kubernetes/values.schema.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,17 @@
339339
}
340340
}
341341
},
342+
"startupProbe": {
343+
"type": "object",
344+
"properties": {
345+
"failureThreshold": {
346+
"type": "integer"
347+
},
348+
"periodSeconds": {
349+
"type": "integer"
350+
}
351+
}
352+
},
342353
"validating": {
343354
"type": "object",
344355
"properties": {

charts/edb-postgres-distributed-for-kubernetes/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ webhook:
7575
readinessProbe:
7676
initialDelaySeconds: 15
7777
periodSeconds: 20
78+
startupProbe:
79+
failureThreshold: 6
80+
periodSeconds: 5
7881

7982
# Manager configuration
8083
managerConfig:

0 commit comments

Comments
 (0)