Update Helm chart to version v0.9.1

This commit is contained in:
DanielHougaard
2025-04-08 18:51:18 +00:00
committed by GitHub
parent fa590ba697
commit ae54d04357
8 changed files with 67 additions and 5 deletions

View File

@@ -13,9 +13,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: v0.9.0 version: v0.9.1
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "v0.9.0" appVersion: "v0.9.1"

View File

@@ -74,6 +74,13 @@ spec:
type: object type: object
kubernetesAuth: kubernetesAuth:
properties: properties:
autoCreateServiceAccountToken:
description: Optionally automatically create a service account
token for the configured service account. If this is set to
`true`, the operator will automatically create a service account
token for the configured service account. This field is recommended
in most cases.
type: boolean
identityId: identityId:
type: string type: string
serviceAccountRef: serviceAccountRef:
@@ -86,6 +93,13 @@ spec:
- name - name
- namespace - namespace
type: object type: object
serviceAccountTokenAudiences:
description: The audiences to use for the service account token.
This is only relevant if `autoCreateServiceAccountToken` is
true.
items:
type: string
type: array
required: required:
- identityId - identityId
- serviceAccountRef - serviceAccountRef

View File

@@ -74,6 +74,13 @@ spec:
type: object type: object
kubernetesAuth: kubernetesAuth:
properties: properties:
autoCreateServiceAccountToken:
description: Optionally automatically create a service account
token for the configured service account. If this is set to
`true`, the operator will automatically create a service account
token for the configured service account. This field is recommended
in most cases.
type: boolean
identityId: identityId:
type: string type: string
serviceAccountRef: serviceAccountRef:
@@ -86,6 +93,13 @@ spec:
- name - name
- namespace - namespace
type: object type: object
serviceAccountTokenAudiences:
description: The audiences to use for the service account token.
This is only relevant if `autoCreateServiceAccountToken` is
true.
items:
type: string
type: array
required: required:
- identityId - identityId
- serviceAccountRef - serviceAccountRef

View File

@@ -137,6 +137,12 @@ spec:
type: object type: object
kubernetesAuth: kubernetesAuth:
properties: properties:
autoCreateServiceAccountToken:
description: Optionally automatically create a service account
token for the configured service account. If this is set to
`true`, the operator will automatically create a service account
token for the configured service account.
type: boolean
identityId: identityId:
type: string type: string
secretsScope: secretsScope:
@@ -164,6 +170,13 @@ spec:
- name - name
- namespace - namespace
type: object type: object
serviceAccountTokenAudiences:
description: The audiences to use for the service account token.
This is only relevant if `autoCreateServiceAccountToken` is
true.
items:
type: string
type: array
required: required:
- identityId - identityId
- secretsScope - secretsScope

View File

@@ -23,6 +23,13 @@ rules:
- list - list
- update - update
- watch - watch
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- list
- apiGroups: - apiGroups:
- "" - ""
resources: resources:
@@ -42,6 +49,12 @@ rules:
- get - get
- list - list
- watch - watch
- apiGroups:
- ""
resources:
- serviceaccounts/token
verbs:
- create
- apiGroups: - apiGroups:
- apps - apps
resources: resources:
@@ -62,6 +75,12 @@ rules:
- list - list
- update - update
- watch - watch
- apiGroups:
- authentication.k8s.io
resources:
- tokenreviews
verbs:
- create
- apiGroups: - apiGroups:
- secrets.infisical.com - secrets.infisical.com
resources: resources:

View File

@@ -32,7 +32,7 @@ controllerManager:
- ALL - ALL
image: image:
repository: infisical/kubernetes-operator repository: infisical/kubernetes-operator
tag: v0.9.0 tag: v0.9.1
resources: resources:
limits: limits:
cpu: 500m cpu: 500m

View File

@@ -77,7 +77,8 @@ spec:
description: Optionally automatically create a service account description: Optionally automatically create a service account
token for the configured service account. If this is set token for the configured service account. If this is set
to `true`, the operator will automatically create a service to `true`, the operator will automatically create a service
account token for the configured service account. account token for the configured service account. This field
is recommended in most cases.
type: boolean type: boolean
identityId: identityId:
type: string type: string

View File

@@ -77,7 +77,8 @@ spec:
description: Optionally automatically create a service account description: Optionally automatically create a service account
token for the configured service account. If this is set token for the configured service account. If this is set
to `true`, the operator will automatically create a service to `true`, the operator will automatically create a service
account token for the configured service account. account token for the configured service account. This field
is recommended in most cases.
type: boolean type: boolean
identityId: identityId:
type: string type: string