Worldskills 2024
Menu
Deployment
EC2
ECR
EKS
Serverless
Other
Utility
Best Practices
Deployment
EFS
Service+Ingress
aws-load-balancer-controller
utils
0 Clicks
EFS Storage class - needs EFS IAM permissions and correctly configured security groups
Copy
--- apiVersion: v1 kind: Service metadata: name: server01-svc namespace: unicorn labels: run: server01 spec: ports: - port: 80 protocol: TCP selector: run: server01 --- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: app-ingress namespace: unicorn annotations: alb.ingress.kubernetes.io/scheme: internet-facing alb.ingress.kubernetes.io/target-type: ip spec: ingressClassName: alb rules: - http: paths: - path: / pathType: Prefix backend: service: name: server01-svc port: number: 80 ---