Skip to content
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

Update image appuio/emergency-credentials-controller to v0.4.0 #5

Merged
merged 1 commit into from
Apr 2, 2024
Merged
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 class/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ parameters:
emergency_credentials_controller:
registry: ghcr.io
image: appuio/emergency-credentials-controller
tag: v0.3.1
tag: v0.4.0
kube_rbac_proxy:
registry: gcr.io
image: kubebuilder/kube-rbac-proxy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ spec:
logStore:
description: LogSpec configures the log store. The log store
outputs the token to the log but does not store it anywhere.
properties:
additionalFields:
additionalProperties:
type: string
description: AdditionalFields is a map of additional fields
to log.
type: object
type: object
name:
description: Name is the name of the store. Must be unique within
Expand Down Expand Up @@ -177,6 +184,24 @@ spec:
last token was created.
format: date-time
type: string
lastTokenStoreConfigurationHashes:
description: LastTokenStoreConfigurationHashes is the hash of the
last token store configuration. It is used to detect changes in
the token store configuration. A change in the configuration triggers
the creation of a new token.
items:
properties:
hash:
description: Sha256 is the hash of the store configuration.
type: string
name:
description: Name is the name of the store.
type: string
required:
- hash
- name
type: object
type: array
tokens:
description: Tokens is a list of tokens that have been created
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: ghcr.io/appuio/emergency-credentials-controller:v0.3.1
image: ghcr.io/appuio/emergency-credentials-controller:v0.4.0
livenessProbe:
httpGet:
path: /healthz
Expand Down
Loading