Skip to content

Commit 356f1e0

Browse files
committedNov 26, 2023
feat(loadbalancer_azure_static_ip.yml): Add example Ingress for AKS
1 parent f7e9e7b commit 356f1e0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎loadbalancer_azure_static_ip.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: hello-world-loadbalancer-azure-static-ip
5+
annotations:
6+
service.beta.kubernetes.io/azure-load-balancer-resource-group: RESOURCE_GROUP_NAME
7+
service.beta.kubernetes.io/azure-load-balancer-health-probe-request-path: /healthz
8+
spec:
9+
type: LoadBalancer
10+
loadBalancerIP: XXX.XXX.XXX.XXX
11+
selector:
12+
app: example
13+
ports:
14+
- port: 80
15+
targetPort: http

0 commit comments

Comments
 (0)
Please sign in to comment.