Page cover image

Create Ingress with TLS

Create certificate

Create a YAML file certificate-test-dekagpu.

nano certificate-test-dekagpu.yaml

Copy and paste the following YAML contents.

apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: test-dekagpu-tls
  namespace: default
spec:
  dnsNames:
    - test-dekagpu.cloudeka.id
  issuerRef:
    kind: ClusterIssuer
    name: letsencrypt-prod
  secretName: test-dekagpu-tls

After pasting the syntax, save the file by pressing Ctrl + O, then press the Enter key and exit the editor by pressing Ctrl + X. The next step is to apply configuration

kubectl apply -f certificate-test-dekagpu.yaml

Create ingress

Create a YAML file ingress-test-dekagpu.

nano ingress-test-dekagpu.yaml

Copy and paste the following YAML contents.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: ingress-test-dekagpu
  namespace: default
  annotations:
    kubernetes.io/ingress.class: nginx
spec:
  ingressClassName: nginx
  rules:
    - host: test-dekagpu.cloudeka.id
      http:
        paths:
          - path: /
            pathType: ImplementationSpecific
            backend:
              service:
                name: svc-test-dekagpu
                port:
                  number: 80
  tls:
    - hosts:
        - test-dekagpu.cloudeka.id
      secretName: test-dekagpu-tls

After pasting the syntax, save the file by pressing Ctrl + O, then press the Enter key and exit the editor by pressing Ctrl + X. The next step is to apply configuration.

kubectl apply -f ingress-test-dekagpu.yaml

Last updated