Skip to content

chore(deps): update helm release external-secrets to v0.17.0 #85

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/examples/src/charts/charts.k
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ charts: helm.Charts = {
chart = "external-secrets"
repoURL = "https://charts.external-secrets.io/"
schemaGenerator = "AUTO"
targetRevision = "0.14.3"
targetRevision = "0.17.0"
crdGenerator = "TEMPLATE"
values: {
installCRDs = True
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down Expand Up @@ -216,16 +217,59 @@ schema ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecret:

Attributes
----------
name : str, default is Undefined, required
name : str, default is Undefined, optional
Name of the Secret.
The Secret must exist in the same namespace as the PushSecret manifest.
selector : ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelector, default is Undefined, optional
selector
"""
name: str
name?: str
selector?: ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelector

check:
len(name) <= 253
len(name) >= 1
_regex_match(str(name), r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$")
len(name) <= 253 if name
len(name) >= 1 if name
_regex_match(str(name), r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$") if name

schema ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelector:
r"""
Selector chooses secrets using a labelSelector.

Attributes
----------
matchExpressions : [ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelectorMatchExpressionsItems0], default is Undefined, optional
matchExpressions is a list of label selector requirements. The requirements are ANDed.
matchLabels : {str:str}, default is Undefined, optional
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
"""
matchExpressions?: [ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelectorMatchExpressionsItems0]
matchLabels?: {str:str}

schema ExternalSecretsIoV1alpha1PushSecretSpecSelectorSecretSelectorMatchExpressionsItems0:
r"""
A label selector requirement is a selector that contains values, a key, and an operator that
relates the key and values.

Attributes
----------
key : str, default is Undefined, required
key is the label key that the selector applies to.
operator : str, default is Undefined, required
operator represents a key's relationship to a set of values.
Valid operators are In, NotIn, Exists and DoesNotExist.
values : [str], default is Undefined, optional
values is an array of string values. If the operator is In or NotIn,
the values array must be non-empty. If the operator is Exists or DoesNotExist,
the values array must be empty. This array is replaced during a strategic
merge patch.
"""
key: str

operator: str

values?: [str]

schema ExternalSecretsIoV1alpha1PushSecretSpecTemplate:
r"""
Expand All @@ -249,7 +293,7 @@ schema ExternalSecretsIoV1alpha1PushSecretSpecTemplate:
type
"""
data?: {str:str}
engineVersion?: "v1" | "v2" = "v2"
engineVersion?: "v2" = "v2"
mergePolicy?: "Replace" | "Merge" = "Replace"
metadata?: ExternalSecretsIoV1alpha1PushSecretSpecTemplateMetadata
templateFrom?: [ExternalSecretsIoV1alpha1PushSecretSpecTemplateTemplateFromItems0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

_regex_match = regex.match

schema ACRAccessToken:
r"""
ACRAccessToken returns a Azure Container Registry token
ACRAccessToken returns an Azure Container Registry token
that can be used for pushing/pulling images.
Note: by default it will return an ACR Refresh Token with full access
(depending on the identity).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import k8s.apimachinery.pkg.apis.meta.v1

schema Fake:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import k8s.apimachinery.pkg.apis.meta.v1

schema GeneratorState:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down Expand Up @@ -55,10 +56,53 @@ schema GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuth:

Attributes
----------
token : GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthToken, default is Undefined, required
basic : GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasic, default is Undefined, optional
basic
token : GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthToken, default is Undefined, optional
token
"""
token: GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthToken
basic?: GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasic
token?: GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthToken

schema GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasic:
r"""
Basic auth credentials used to authenticate against the Grafana instance.
Note: you need a token which has elevated permissions to create service accounts.
See here for the documentation on basic roles offered by Grafana:
https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/rbac-fixed-basic-role-definitions/

Attributes
----------
password : GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasicPassword, default is Undefined, required
password
username : str, default is Undefined, required
A basic auth username used to authenticate against the Grafana instance.
"""
password: GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasicPassword

username: str

schema GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthBasicPassword:
r"""
A basic auth password used to authenticate against the Grafana instance.

Attributes
----------
key : str, default is Undefined, optional
The key where the token is found.
name : str, default is Undefined, optional
The name of the Secret resource being referred to.
"""
key?: str
name?: str

check:
len(key) <= 253 if key
len(key) >= 1 if key
_regex_match(str(key), r"^[-._a-zA-Z0-9]+$") if key
len(name) <= 253 if name
len(name) >= 1 if name
_regex_match(str(name), r"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$") if name

schema GeneratorsExternalSecretsIoV1alpha1GrafanaSpecAuthToken:
r"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import k8s.apimachinery.pkg.apis.meta.v1

schema Password:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import k8s.apimachinery.pkg.apis.meta.v1

schema UUID:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""

import regex
import k8s.apimachinery.pkg.apis.meta.v1

Expand Down Expand Up @@ -75,7 +76,7 @@ schema GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProvider:

Attributes
----------
auth : GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProviderAuth, default is Undefined, required
auth : GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProviderAuth, default is Undefined, optional
auth
caBundle : str, default is Undefined, optional
PEM encoded CA bundle used to validate Vault server certificate. Only used
Expand Down Expand Up @@ -113,8 +114,7 @@ schema GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProvider:
Version is the Vault KV secret engine version. This can be either "v1" or
"v2". Version defaults to "v2".
"""
auth: GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProviderAuth

auth?: GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProviderAuth
caBundle?: str
caProvider?: GeneratorsExternalSecretsIoV1alpha1VaultDynamicSecretSpecProviderCaProvider
forwardInconsistent?: bool
Expand Down
Loading