Last active
May 16, 2023 09:35
-
-
Save andrizan/df7e719c60681ef100743f81053ccd57 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
k3d registry create local-registry --port 5000 | |
k3d cluster create local -p "8082:30080@agent:0" --agents 2 --registry-use local-registry:5050 --registry-config registries.yaml | |
k3d cluster create local --api-port 6550 -p "8888:80@loadbalancer" --agents 2 --registry-use local-registry:5050 --registry-config registries.yaml | |
kubectl create service clusterip cmsgateway --tcp=8080:8080 | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
helm install mongodb bitnami/mongodb --set architecture=replicaset,replicaCount=2,externalAccess.enabled=true,externalAccess.service.type=NodePort,externalAccess.service.nodePorts[0]='30088',externalAccess.service.nodePorts[1]='30099' | |
helm install mongodb bitnami/mongodb --set architecture=replicaset,replicaCount=2,externalAccess.enabled=true,externalAccess.service.type=LoadBalancer,externalAccess.service.port=27017,externalAccess.autoDiscovery.enabled=true,serviceAccount.create=true,rbac.create=true | |
ref=https://k3d.io/v5.4.9/usage/registries/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mirrors: | |
"localhost:5000": | |
endpoint: | |
- http://local-registry:5000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment