Hello,
I am learning kubernetes and traefik.
I would like to deploy traefik in kubernetes.
Right now I have a test environment on digitalocean but the questions are about traefik and kubernetes in general.
I have currently this situation.
kubectl get pods,services
NAME READY STATUS RESTARTS AGE
pod/app-frontend-5d5584888d-9mzhv 1/1 Running 0 114m
pod/app-backend-67b59df8b5-59lh2 1/1 Running 0 114m
pod/cm-acme-http-solver-qh8ms 1/1 Running 0 63m
pod/company-service-855864d49-mrkrp 1/1 Running 0 114m
pod/edge-service-5cd9945fbc-tzthl 1/1 Running 0 114m
pod/location-service-68db8f867b-wzf4j 1/1 Running 0 114m
pod/tomcat-deployment-69677f796c-57xh7 1/1 Running 0 39m
pod/traefik-5d86ff94c5-c6m9f 1/1 Running 0 22h
pod/traefik-deployment-c8bdf66f5-kgng2 1/1 Running 0 4h46m
pod/user-service-5f5c46df5f-j2lqg 1/1 Running 1 (113m ago) 114m
NAME TYPE EXTERNAL-IP PORT(S) AGE
service/app-frontend LoadBalancer app-ext-ip 3000:32459/TCP 114m
service/app-backend ClusterIP <none> 5432/TCP 114m
service/cm-acme-http-solver-fcgpr NodePort <none> 8089:30577/TCP 63m
service/company-service ClusterIP <none> 9003/TCP 114m
service/edge-service ClusterIP <none> 9000/TCP 114m
service/kubernetes ClusterIP <none> 443/TCP 23h
service/location-service ClusterIP <none> 9002/TCP 114m
service/traefik LoadBalancer traefik-ext-ip 80:32591/TCP,443:30716/TCP 22h
service/traefik-dashboard-service LoadBalancer traefik-dashboard-ext-ip 8080:31431/TCP 4h44m
service/traefik-web-service LoadBalancer traefik-web-ext-ip 80:31211/TCP 4h44m
service/user-service ClusterIP <none> 9001/TCP 114m
so far I followed this guide: Secure Web Apps: Traefik Proxy, cert-manager & Let’s Encrypt
and I'm reading the documentation.
What I'm trying to understand and achieve Is how to get traefik act as a proxy and ssl into app-frontend. Can you point me to some further documentation?