Published at June 7, 2021 · 1 min read
We are now ready to deploy our Hugo app. To start, we will create a single Pod. Create a pod Create a file called pod.yml: katarinabrookfield@KatsMac hugo-site % vi pod.yml Enter the following info into the pod.yml file: apiVersion: v1 kind: Pod metadata: name: hugo-site-pod labels: project: hugo-site spec: containers: - name: web-ctr image: katbrookfield/hugo-site ports: - containerPort: 8080 Deploy the app Run the following command to deploy the app:...