Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
010bda7439
commit
dba1cadca3
|
@ -1,13 +0,0 @@
|
||||||
**Important:**
|
|
||||||
*for the complete changelog, please refer to the website*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [cloudnative-pg-0.0.1]cloudnative-pg-0.0.1 (2023-06-03)
|
|
||||||
|
|
||||||
### Add
|
|
||||||
|
|
||||||
- add cloudnative pg operator chart ([#9332](https://github.com/truecharts/charts/issues/9332))
|
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
## [cloudnative-pg-0.0.1]cloudnative-pg-0.0.1 (2023-06-03)
|
|
||||||
|
|
||||||
### Add
|
|
||||||
|
|
||||||
- add cloudnative pg operator chart ([#9332](https://github.com/truecharts/charts/issues/9332))
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,26 @@
|
||||||
|
**Important:**
|
||||||
|
*for the complete changelog, please refer to the website*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [cloudnative-pg-0.0.2](https://github.com/truecharts/charts/compare/cloudnative-pg-0.0.1...cloudnative-pg-0.0.2) (2023-06-06)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
|
||||||
|
- update helm chart common to 12.12.1 ([#9349](https://github.com/truecharts/charts/issues/9349))
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- use hardcoded and fixed cnpg-webhook-service servicename ([#9429](https://github.com/truecharts/charts/issues/9429))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [cloudnative-pg-0.0.1]cloudnative-pg-0.0.1 (2023-06-03)
|
||||||
|
|
||||||
|
### Add
|
||||||
|
|
||||||
|
- add cloudnative pg operator chart ([#9332](https://github.com/truecharts/charts/issues/9332))
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ keywords:
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.truecharts.org
|
repository: https://library-charts.truecharts.org
|
||||||
version: 12.12.0
|
version: 12.12.3
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
maintainers:
|
maintainers:
|
||||||
- email: info@truecharts.org
|
- email: info@truecharts.org
|
||||||
|
@ -23,7 +23,7 @@ sources:
|
||||||
- https://github.com/cloudnative-pg
|
- https://github.com/cloudnative-pg
|
||||||
- https://cloudnative-pg.io/
|
- https://cloudnative-pg.io/
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.1
|
version: 0.0.2
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- operators
|
- operators
|
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
|
||||||
|
## [cloudnative-pg-0.0.2](https://github.com/truecharts/charts/compare/cloudnative-pg-0.0.1...cloudnative-pg-0.0.2) (2023-06-06)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
|
||||||
|
- update helm chart common to 12.12.1 ([#9349](https://github.com/truecharts/charts/issues/9349))
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- use hardcoded and fixed cnpg-webhook-service servicename ([#9429](https://github.com/truecharts/charts/issues/9429))
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,18 +13,20 @@ workload:
|
||||||
- --leader-elect
|
- --leader-elect
|
||||||
- --config-map-name={{ include "tc.v1.common.lib.chart.names.fullname" $ }}-config
|
- --config-map-name={{ include "tc.v1.common.lib.chart.names.fullname" $ }}-config
|
||||||
- --secret-name={{ include "tc.v1.common.lib.chart.names.fullname" $ }}-config
|
- --secret-name={{ include "tc.v1.common.lib.chart.names.fullname" $ }}-config
|
||||||
- --webhook-port={{ $.Values.service.main.ports.main.targetPort }}
|
- --webhook-port=9443
|
||||||
command:
|
command:
|
||||||
- /manager
|
- /manager
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
||||||
port: main
|
port: webhook
|
||||||
|
type: https
|
||||||
path: /readyz
|
path: /readyz
|
||||||
readiness:
|
readiness:
|
||||||
port: main
|
port: webhook
|
||||||
|
type: https
|
||||||
path: /readyz
|
path: /readyz
|
||||||
startup:
|
startup:
|
||||||
port: main
|
port: webhook
|
||||||
type: tcp
|
type: tcp
|
||||||
env:
|
env:
|
||||||
OPERATOR_IMAGE_NAME: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
OPERATOR_IMAGE_NAME: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
|
@ -40,16 +42,17 @@ service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
|
protocol: http
|
||||||
|
port: 8080
|
||||||
|
cnpg-webhook-service:
|
||||||
|
enabled: true
|
||||||
|
expandObjectName: false
|
||||||
|
ports:
|
||||||
|
webhook:
|
||||||
|
enabled: true
|
||||||
protocol: https
|
protocol: https
|
||||||
port: 443
|
port: 443
|
||||||
targetPort: 9443
|
targetPort: 9443
|
||||||
metrics:
|
|
||||||
enabled: true
|
|
||||||
ports:
|
|
||||||
metrics:
|
|
||||||
enabled: true
|
|
||||||
protocol: http
|
|
||||||
port: 8080
|
|
||||||
|
|
||||||
operator:
|
operator:
|
||||||
register: true
|
register: true
|
||||||
|
@ -81,7 +84,7 @@ metrics:
|
||||||
enabled: false
|
enabled: false
|
||||||
type: "podmonitor"
|
type: "podmonitor"
|
||||||
endpoints:
|
endpoints:
|
||||||
- port: metrics
|
- port: main
|
||||||
interval: 5s
|
interval: 5s
|
||||||
scrapeTimeout: 5s
|
scrapeTimeout: 5s
|
||||||
path: /
|
path: /
|
|
@ -22,7 +22,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /mutate-postgresql-cnpg-io-v1-backup
|
path: /mutate-postgresql-cnpg-io-v1-backup
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
||||||
|
@ -43,7 +43,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /mutate-postgresql-cnpg-io-v1-cluster
|
path: /mutate-postgresql-cnpg-io-v1-cluster
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
||||||
|
@ -64,7 +64,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /mutate-postgresql-cnpg-io-v1-scheduledbackup
|
path: /mutate-postgresql-cnpg-io-v1-scheduledbackup
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
|
@ -22,7 +22,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /validate-postgresql-cnpg-io-v1-backup
|
path: /validate-postgresql-cnpg-io-v1-backup
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
||||||
|
@ -43,7 +43,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /validate-postgresql-cnpg-io-v1-cluster
|
path: /validate-postgresql-cnpg-io-v1-cluster
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
||||||
|
@ -64,7 +64,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /validate-postgresql-cnpg-io-v1-scheduledbackup
|
path: /validate-postgresql-cnpg-io-v1-scheduledbackup
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
||||||
|
@ -85,7 +85,7 @@ webhooks:
|
||||||
- v1
|
- v1
|
||||||
clientConfig:
|
clientConfig:
|
||||||
service:
|
service:
|
||||||
name: {{ include "tc.v1.common.lib.chart.names.fullname" $ }}
|
name: cnpg-webhook-service
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
path: /validate-postgresql-cnpg-io-v1-pooler
|
path: /validate-postgresql-cnpg-io-v1-pooler
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
port: {{ .Values.service.main.ports.main.port }}
|
Loading…
Reference in New Issue