Httpd Deploy in Kubernetes: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
Create a local directory that will host the content to be served by httpd. | Create a local directory that will host the content to be served by httpd. | ||
<syntaxhighlight lang='bash'> | |||
mkdir ~/runtime/httpd-local | |||
</syntaxhighlight> | |||
==Pod and Service Manifest== | ==Pod and Service Manifest== |
Revision as of 19:02, 15 December 2019
Internal
Overview
This is a procedure to deploy httpd as a pod in Kubernetes and make it serve content form a local directory, mounted as "hostPath". The procedure was written using Docker Desktop Kubernetes.
Playground
Procedure
Local Directory
Create a local directory that will host the content to be served by httpd.
mkdir ~/runtime/httpd-local
Pod and Service Manifest