Last active
August 27, 2019 09:14
-
-
Save pablorsk/386e79556be596f00d97cd0fd01fba14 to your computer and use it in GitHub Desktop.
Kubernetes: Helm + Node “Hello world”
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
<h1>Hello world!</h1> |
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
FROM busybox | |
ADD app/index.html /www/index.html | |
EXPOSE 8005 | |
CMD httpd -p 8005 -h /www; tail -f /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you also share the values.yaml file here? I am new to kubernetes and helm. Finding difficulties in installing this.
My values.yaml file is as follows
The output while trying to install is: