Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
154f3d118b
commit
98cd4b5bb3
|
@ -1,5 +0,0 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -37,4 +37,4 @@ sources:
|
|||
- https://quay.io/brancz/kube-rbac-proxy
|
||||
- https://quay.io/backube/volsync
|
||||
type: application
|
||||
version: 1.0.5
|
||||
version: 1.0.7
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
## [volsync-1.0.5]volsync-1.0.5 (2024-05-19)
|
||||
## [volsync-1.0.7]volsync-1.0.7 (2024-05-19)
|
||||
|
||||
### Chore
|
||||
|
||||
|
@ -14,6 +14,8 @@
|
|||
|
||||
- exclude changelog from pagefind ([#21693](https://github.com/truecharts/charts/issues/21693))
|
||||
|
||||
- remove credentials option for volsync as it has not database or persistence
|
||||
|
||||
### Feat
|
||||
|
||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
|
@ -178,77 +178,6 @@ questions:
|
|||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: credentialsList
|
||||
group: General
|
||||
label: "Credentials (Experimental)"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: credentialsEntry
|
||||
label: "Enter Credentials"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: Name
|
||||
description: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: type
|
||||
label: Type
|
||||
description: "Type of Credential"
|
||||
schema:
|
||||
type: string
|
||||
default: "s3"
|
||||
enum:
|
||||
- value: s3
|
||||
description: s3 Storage
|
||||
- variable: url
|
||||
label: "url"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: path
|
||||
label: "path"
|
||||
description: "Path Prefix not needed for most cases"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: bucket
|
||||
label: "bucket"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: accessKey
|
||||
label: "accessKey"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: secretKey
|
||||
label: "secretKey"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: encrKey
|
||||
label: "encrKey"
|
||||
description: "The Encryption key is needed for tools like volsync if not needed it will be ignored"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: "MYSECRETPASSPHRASE"
|
||||
required: true
|
||||
|
||||
- variable: workload
|
||||
group: "Workload"
|
||||
label: ""
|
|
@ -0,0 +1,9 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- if or .Values.credentials .Values.credentialsList }}
|
||||
{{- fail "Don't try to add credenatials to VolSync, add them to the individual charts using VolSync" }}
|
||||
{{- end }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
Binary file not shown.
|
@ -1,5 +0,0 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -10,7 +10,7 @@ apiVersion: v2
|
|||
appVersion: latest
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 22.0.3
|
||||
version: 23.0.0
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: ""
|
||||
alias: ""
|
||||
|
@ -43,4 +43,4 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/system/cloudnative-pg
|
||||
- https://github.com/truecharts/containers/tree/master/apps/alpine
|
||||
type: application
|
||||
version: 7.0.3
|
||||
version: 7.0.5
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
## [cloudnative-pg-7.0.3](https://github.com/truecharts/charts/compare/cloudnative-pg-6.7.0...cloudnative-pg-7.0.3) (2024-04-30)
|
||||
## [cloudnative-pg-7.0.5](https://github.com/truecharts/charts/compare/cloudnative-pg-6.7.0...cloudnative-pg-7.0.5) (2024-05-19)
|
||||
|
||||
### Chore
|
||||
|
||||
|
@ -8,29 +8,33 @@
|
|||
|
||||
- bump charts to release new docs to fix broken links
|
||||
|
||||
- bump common to release improved checks on volsync and cnpg ([#21454](https://github.com/truecharts/charts/issues/21454))
|
||||
|
||||
- bump common
|
||||
|
||||
- bump charts to ensure new icons are released
|
||||
|
||||
- bump everything to regenerate readme's and site index
|
||||
|
||||
- bump CloudNative-PG to release idiotproofing credentials
|
||||
|
||||
- bump everything to release new doc pages
|
||||
|
||||
- update groups html ([#21121](https://github.com/truecharts/charts/issues/21121))
|
||||
|
||||
- bump correctly
|
||||
|
||||
- update container image common to v20.3.6[@27edfed](https://github.com/27edfed) by renovate ([#20599](https://github.com/truecharts/charts/issues/20599))
|
||||
- update helm chart cloudnative-pg to 0.21.0 by renovate ([#21335](https://github.com/truecharts/charts/issues/21335))
|
||||
|
||||
- update container image common to v20.3.2[@0722ebb](https://github.com/0722ebb) by renovate ([#20334](https://github.com/truecharts/charts/issues/20334))
|
||||
|
||||
- update container image common to v20.3.11[@dae6129](https://github.com/dae6129) by renovate ([#20875](https://github.com/truecharts/charts/issues/20875))
|
||||
|
||||
- update container image common to v20.3.12[@3303278](https://github.com/3303278) by renovate ([#21384](https://github.com/truecharts/charts/issues/21384))
|
||||
- update helm chart cloudnative-pg to 0.21.0 by renovate ([#21431](https://github.com/truecharts/charts/issues/21431))
|
||||
|
||||
- update container image common to v20.3.7[@8cf9fc9](https://github.com/8cf9fc9) by renovate ([#20819](https://github.com/truecharts/charts/issues/20819))
|
||||
|
||||
- update helm chart cloudnative-pg to 0.21.0 by renovate ([#21431](https://github.com/truecharts/charts/issues/21431))
|
||||
- update container image common to v20.3.6[@27edfed](https://github.com/27edfed) by renovate ([#20599](https://github.com/truecharts/charts/issues/20599))
|
||||
|
||||
- update container image common to v20.3.5[@aedd88a](https://github.com/aedd88a) by renovate ([#20535](https://github.com/truecharts/charts/issues/20535))
|
||||
|
||||
|
@ -38,7 +42,7 @@
|
|||
|
||||
- update container image common to v20.3.3[@3876ba5](https://github.com/3876ba5) by renovate ([#20478](https://github.com/truecharts/charts/issues/20478))
|
||||
|
||||
- update helm chart cloudnative-pg to 0.21.0 by renovate ([#21335](https://github.com/truecharts/charts/issues/21335))
|
||||
- update container image common to v20.3.12[@3303278](https://github.com/3303278) by renovate ([#21384](https://github.com/truecharts/charts/issues/21384))
|
||||
|
||||
- update container image common to v20.2.10[@6f99c97](https://github.com/6f99c97) by renovate ([#19876](https://github.com/truecharts/charts/issues/19876))
|
||||
|
||||
|
@ -58,6 +62,8 @@
|
|||
|
||||
|
||||
|
||||
- remove credentials from CNPG chart
|
||||
|
||||
- rework SCALE catagories/groups to match helm and remove deprecated charts ([#21111](https://github.com/truecharts/charts/issues/21111))
|
||||
|
||||
### Feat
|
Binary file not shown.
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -177,81 +177,3 @@ questions:
|
|||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: credentialsList
|
||||
group: General
|
||||
label: "Credentials (Experimental)"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: credentialsEntry
|
||||
label: "Enter Credentials"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: Name
|
||||
description: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: type
|
||||
label: Type
|
||||
description: "Type of Credential"
|
||||
schema:
|
||||
type: string
|
||||
default: "s3"
|
||||
enum:
|
||||
- value: s3
|
||||
description: s3 Storage
|
||||
- variable: url
|
||||
label: "url"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: path
|
||||
label: "path"
|
||||
description: "Path Prefix not needed for most cases"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: region
|
||||
label: "region"
|
||||
description: "region is primarily for AWS not needed for most cases"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: bucket
|
||||
label: "bucket"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: accessKey
|
||||
label: "accessKey"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: secretKey
|
||||
label: "secretKey"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: encrKey
|
||||
label: "encrKey"
|
||||
description: "The Encryption key is needed for tools like volsync if not needed it will be ignored"
|
||||
schema:
|
||||
show_if: [["type", "=", "s3"]]
|
||||
type: string
|
||||
default: "MYSECRETPASSPHRASE"
|
||||
required: true
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- if or .Values.credentials .Values.credentialsList }}
|
||||
{{- fail "Don't try to add credenatials to CloudNative-PG, add them to the individual charts using CloudNative-PG" }}
|
||||
{{- end }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
Loading…
Reference in New Issue