toolkit v0.1: Upgrade to the v1beta1 APIs #288
Unanswered
stefanprodan
asked this question in
Show and tell
Replies: 1 comment
-
Don't forget to change your manifest API versions: Delete your Namespaces from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
GOTK v0.1 the first MINOR prerelease, it promotes the
toolkit.fluxcd.io
APIs to v1beta1 and removes support for v1alpha1.Going forward, changes to the API will be accompanied by a conversion mechanism. With this release the API becomes more stable, but while in beta phase there are no guarantees about backwards compatibility between beta releases.
Upgrade procedure from 0.0.x to 0.1.x
brew upgrade gotk
gotk uninstall --crds --namespace=gitops-system
(this will wipe clean your cluster)gotk install --namespace=gotk-system
or usinggotk bootstrap
toolkit.fluxcd.io/v1alpha1
totoolkit.fluxcd.io/v1beta1
Manual removal of 0.0.x
Assuming you've installed the toolkit in
gitops-system
, you could uninstall it without removing the deployed workloads:kubectl delete $(kubectl get crds -oname | grep "toolkit.fluxcd.io")
Beta Was this translation helpful? Give feedback.
All reactions