Skip to content

Commit

Permalink
Merge pull request cloudforet-io#29 from aseora/feature
Browse files Browse the repository at this point in the history
Change docs /ingress/aws.md and examples/ingress/aws/*.yaml
  • Loading branch information
whdalsrnt authored Jun 17, 2023
2 parents b5b0a34 + e0b6552 commit b28d2fe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/ingress/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ First, you need to download all the ingress files and replace the `certificate-a
And then, apply the ingress files.
```bash
kubectl apply -f console_ingress.yaml -n spaceone
kubectl apply -f console_api_ingress.yaml -n spaceone
kubectl apply -f rest_api_ingress.yaml -n spaceone
kubectl apply -f grpc_api_ingress.yaml -n spaceone
kubectl apply -f monitoring_webhook_ingress.yaml -n spaceone
```
Expand Down
2 changes: 1 addition & 1 deletion examples/ingress/aws/console_ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
alb.ingress.kubernetes.io/healthcheck-protocol: HTTP
alb.ingress.kubernetes.io/certificate-arn: "arn:aws:acm:..." # Change the certificate-arn
alb.ingress.kubernetes.io/success-codes: 200-399
alb.ingress.kubernetes.io/load-balancer-name: spaceone-console-ingress
alb.ingress.kubernetes.io/load-balancer-name: spaceone-console-ingress # Caution!! Must be fewer than 32 characters.
external-dns.alpha.kubernetes.io/hostname: "console.example.com" # Change the hostname
spec:
ingressClassName: alb
Expand Down
2 changes: 1 addition & 1 deletion examples/ingress/aws/grpc_api_ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
alb.ingress.kubernetes.io/inbound-cidrs: 0.0.0.0/0
alb.ingress.kubernetes.io/healthcheck-protocol: HTTP
alb.ingress.kubernetes.io/certificate-arn: "arn:aws:acm:..." # Change the certificate-arn
alb.ingress.kubernetes.io/load-balancer-name: spaceone-grpc-ingress
alb.ingress.kubernetes.io/load-balancer-name: spaceone-grpc-ingress # Caution!! Must be fewer than 32 characters.
external-dns.alpha.kubernetes.io/hostname: "*.grpc.example.com" # Change the hostname
spec:
ingressClassName: alb
Expand Down
2 changes: 1 addition & 1 deletion examples/ingress/aws/monitoring_webhook_ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ metadata:
alb.ingress.kubernetes.io/healthcheck-protocol: HTTP
alb.ingress.kubernetes.io/certificate-arn: "arn:aws:acm:..." # Change the certificate-arn
alb.ingress.kubernetes.io/success-codes: 200-399
alb.ingress.kubernetes.io/load-balancer-name: spaceone-monitoring-webhook-ingress
alb.ingress.kubernetes.io/load-balancer-name: monitoring-webhook-ingress # Caution!! Must be fewer than 32 characters.
external-dns.alpha.kubernetes.io/hostname: "webhook.example.com" # Change the hostname
spec:
ingressClassName: alb
Expand Down
2 changes: 1 addition & 1 deletion examples/ingress/aws/rest_api_ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
alb.ingress.kubernetes.io/healthcheck-protocol: HTTP
alb.ingress.kubernetes.io/certificate-arn: "arn:aws:acm:..." # Change the certificate-arn
alb.ingress.kubernetes.io/success-codes: 200-399
alb.ingress.kubernetes.io/load-balancer-name: spaceone-console-api-ingress
alb.ingress.kubernetes.io/load-balancer-name: spaceone-console-api-ingress # Caution!! Must be fewer than 32 characters.
external-dns.alpha.kubernetes.io/hostname: "console.api.example.com" # Change the hostname
spec:
ingressClassName: alb
Expand Down

0 comments on commit b28d2fe

Please sign in to comment.