You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
This has been a very handy little application for us and I'd like at some point to add a simple chart so it simplifies the deployment for others.
I'm pasting here the Terraform module I created based on the example. The Helm chart should pretty much do exactly this under the hood but accept more configuration params:
variable"url" {
description="The URL of the private registry. Can be provided as a full URL or just the domain name (e.g. docker.pkg.github.com)."type=string
}
variable"auth_base64" {
description="The base64-encoded auth credentials for the registry. Usually in the decoded form or `username:password`."type=string
}
variable"check_interval" {
description="The interval to periodically check for new service accounts to patch"type=stringdefault="30s"
}
variable"excluded_namespaces" {
description="List of namespaces to exclude from patching their service accounts with the private registry configuration"type=list(string)
default=[
"kube-node-lease",
"kube-public",
"kube-system",
]
}
The text was updated successfully, but these errors were encountered:
This has been a very handy little application for us and I'd like at some point to add a simple chart so it simplifies the deployment for others.
I'm pasting here the Terraform module I created based on the example. The Helm chart should pretty much do exactly this under the hood but accept more configuration params:
The text was updated successfully, but these errors were encountered: