mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-28 02:18:36 +00:00
9 lines
284 B
Bash
9 lines
284 B
Bash
#!/bin/sh
|
|
# Migration 13 --> 14
|
|
|
|
# Delete capi-providers
|
|
kubectl delete hr capi-providers -n cozy-cluster-api
|
|
|
|
# Write version to cozystack-version config
|
|
kubectl create configmap -n cozy-system cozystack-version --from-literal=version=14 --dry-run=client -o yaml | kubectl apply -f-
|