Skip to content

Commit f7f5299

Browse files
author
Paulo Alberto Simoes
authored
Change from OCI LB Flex to 100Mbps (#211)
* change oci lb from flex to 100mbps * Delete inventory-helidon Service * Fix path of k6 test.sh
1 parent 20d842d commit f7f5299

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

grabdish/ingress/nginx/ingress-nginx-helm-values4oci.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ controller:
2828
annotations:
2929
service.beta.kubernetes.io/oci-load-balancer-ssl-ports: "443"
3030
service.beta.kubernetes.io/oci-load-balancer-tls-secret: ssl-certificate-secret
31-
service.beta.kubernetes.io/oci-load-balancer-shape: "flexible"
32-
service.beta.kubernetes.io/oci-load-balancer-shape-flex-min: "10"
33-
service.beta.kubernetes.io/oci-load-balancer-shape-flex-max: "100"
31+
service.beta.kubernetes.io/oci-load-balancer-shape: "100Mbps"
32+
33+
# The 10 Mbps shape is Always Free eligible.
34+
# https://docs.oracle.com/en-us/iaas/Content/Balance/Concepts/balanceoverview.htm#Overview\_of\_Load\_Balancing
35+
# service.beta.kubernetes.io/oci-load-balancer-shape: "flexible"
36+
# service.beta.kubernetes.io/oci-load-balancer-shape-flex-min: "10"
37+
# service.beta.kubernetes.io/oci-load-balancer-shape-flex-max: "100"
3438

3539
# enableHttp: false
3640
# enableHttps: true

grabdish/inventory-helidon/undeploy.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
## Copyright (c) 2021 Oracle and/or its affiliates.
33
## Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
44

5+
echo delete inventory-helidon deployment and service...
56

6-
echo delete inventory-helidon deployment...
7+
# Delete inventory-helidon Service
8+
kubectl delete service inventory -n msdataworkshop
79

8-
kubectl delete deployment inventory-helidon -n msdataworkshop
9-
10-
# kubectl delete service inventory -n msdataworkshop
10+
# Delete inventory-helidon Deployment
11+
kubectl delete deployment inventory-helidon -n msdataworkshop

0 commit comments

Comments
 (0)