skip to Main Content

Hetzler LB, cert-manager, nginx-ingress example

I installed kubernetes in Hetner based on the repository. I am using godaddy as DNS management I have install cert manager in the cluster. I took it from here. kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.12.0/cert-manager.yaml Load balancer: apiVersion: v1 kind: Service metadata:…

VIEW QUESTION

Nginx – Problem installing Issuer (cert-manager) inside GKE cluster tls: failed to verify certificate: x509: certificate signed by unknown authority

I have a problem during the installation of an Issuer inside GKE. I follow this guide https://cert-manager.io/docs/tutorials/acme/nginx-ingress/#step-5---deploy-cert-manager. My steps were: Creation of an autopilot cluster via Google Cloud Console Install nginx ingress controller via helm (https://cert-manager.io/docs/tutorials/acme/nginx-ingress/#step-2---deploy-the-nginx-ingress-controller) I read the EXTERNAL…

VIEW QUESTION

Nginx – Aerospike Kubernetes operator installing error in EKS cluster

strong textTill the cert-manager every pods working good as followed by aerospike docs. But while installing the operator the operator pods get crash loop backoff. Installing operator using: git clone https://github.com/aerospike/aerospike-kubernetes-operator.git git checkout 2.5.0 cd aerospike-kubernetes-operator/helm-charts helm install aerospike-kubernetes-operator ./aerospike-kubernetes-operator…

VIEW QUESTION

cert-manager did not get expected response when querying endpoint, expected <token> but got: <html xml:lang="fr-FR" l… (truncated)" – Nginx

I have configured a ClusterIssuer apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-cluster-issuer spec: acme: email: <myemail> server: https://acme-v02.api.letsencrypt.org/directory privateKeySecretRef: name: letsencrypt-cluster-issuer-key solvers: - http01: ingress: class: nginx and An Ingress apiVersion: networking.k8s.io/v1 kind: Ingress metadata: annotations: cert-manager.io/cluster-issuer: letsencrypt-cluster-issuer kubernetes.io/ingress.class: nginx…

VIEW QUESTION

kubectl get certificates : No resources found using cert-manager – Nginx

I don't undestand why i can't get certificates on K8S using cert-manager I installed cert-manager : https://github.com/cert-manager/cert-manager/releases/download/v1.7.1/cert-manager.crds.yaml I created ClusterIssuer apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-staging spec: acme: email: [email protected] server: https://acme-staging-v02.api.letsencrypt.org/directory privateKeySecretRef: name: example-issuer-account-key solvers: - http01: ingress:…

VIEW QUESTION
Back To Top
Search