Created
November 13, 2019 16:50
-
-
Save rafaelfelix/3f651f725f7f6d0e6adfccc70672dcff to your computer and use it in GitHub Desktop.
spark-on-k8s-deploy-docker-registry.sh
This file contains hidden or 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
| #!/bin/bash | |
| cat > registry-values.yaml << EOF | |
| service: | |
| type: NodePort | |
| nodePort: 30000 | |
| EOF | |
| helm init --wait && \ | |
| helm upgrade --install --wait registry -f registry-values.yaml stable/docker-registry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment