SOLVED - Rancher upgrade failed - no matches for kind "Issuer" in version "cert-manager.io/v1beta1"

Error: UPGRADE FAILED: current release manifest contains removed kubernetes api(s) for this kubernetes version and it is therefore unable to build the kubernetes objects for performing the diff. error from kubernetes: unable to recognize : no matches for kind Issuer in version cert-manager.io/v1beta1 Error: UPGRADE FAILED: unable to build kubernetes objects from current release manifest: unable to recognize : no matches for kind Issuer in version certmanager.k8s.io/v1alpha1 SOLUTIONYou have to edit your latest Helm v3 config for for Rancher and replace cert-manager.io/v1beta1 with cert-manager.io/v1.HOW TOOpen your Rancher Dashboard and go to Secrets in cattle-system namespace (Kind: Helm Release). And locate Secrets named sh.helm.release.v1.rancher.v*.In my case I need to edit latest config version named sh.helm.release.v1.rancher.v7.Apply this fix:kubectl get secret sh.helm.release.v1.rancher.v7 -n cattle-system -o yaml > helm-rancher-config.yaml kubectl get secrets sh.helm.release.v1.rancher.v7 -n cattle-system -o json | jq .data.release | tr -d | base64 -d | base64 -d | gzip -d > helm-rancher-config-data-decoded.yaml echo Choose your Cert Manager string to replace (v1alpha1 vs v1beta1) sed -e s/cert-manager.io\/v1beta1/cert-manager.io\/v1/ helm-rancher-config-data-decoded.yaml > helm-rancher-config-data-decoded-replaced.yaml # sed -e s/certmanager.k8s.io\/v1alpha1/cert-manager.io\/v1/ helm-rancher-config-data-decoded.yaml > helm-rancher-config-data-decoded-replaced.yaml releaseData=$(cat helm-rancher-config-data-decoded-replaced.yaml | gzip | base64 | base64 | tr -d \n ) sed s/^\(\s*release\s*:\s*\).*/\1 $releaseData / helm-rancher-config.yaml > helm-rancher-config-final.yaml kubectl apply -f helm-rancher-config-final.yaml -n cattle-system TroubleshootingIn my case I need to remove all the older Secret versions and keep only the latest version, because Helm upgrade loads sh.helm.release.v1.rancher.v1 all the time.Later I have found why - badly saved latest deployed version to v1. (Rancher Dashboard -> Apps & Marketplace -> Installed Apps -> Rancher -> view yaml)

projít na článek

Cert Manager upgrade from Rancher shows only latest version

You have to modify chart metadata and add two annotations: catalog.cattle.io/ui-source-repo: jetstack and catalog.cattle.io/ui-source-repo-type: cluster You can modify annotations in API viewAnd VOILA!

projít na článek

SOLVED: rke2-agent-3 systemd[1]: Failed to start Rancher Kubernetes Engine v2 (agent) invalid kernel parameter

root@:/etc/rancher/rke2# sudo systemctl status rke2-agent rke2-agent.service - Rancher Kubernetes Engine v2 (agent) Loaded: loaded (/usr/local/lib/systemd/system/rke2-agent.service; enabled; vendor preset: enabled) Active: activating (auto-rest

projít na článek

Solved: Failed to configure agent: Node password rejected, duplicate hostname or contents RKE2/K3S

If you recreate server with the same name that has been already joined in your cluster, you will end up with this error message.WARN[0000] not running in CIS mode INFO[0000] Starting rke2 agent v1.21.3+rke2r1 (2ed0b0d1b6924af4414393cd1796c174a1ff5352) INF

projít na článek

Upgrade debian squeeze na wheezy

Jak upgradovat Debian Squeeze (Debian 6) na Wheezy (Debian 7) Než začnete: máte přístup jako root na server máte server zazálohovaný 1. Příprava na upgrade/upgrade Editujte soubor /etc/apt/sources.list Soubor by měl vypadat asi takto: deb http://ftp.cz

projít na článek

RKE2 - enable nginx proxy protocol by default

After RKE2 upgrade you will lost your rke2-ingress-nginx-controller config values.Define this HelmChartConfig and your setup will be used every time, when you upgrade RKE2. More info about config in official documentation.apiVersion: helm.cattle.io/v1 kin

projít na článek