Skip to content

Commit ee5f296

Browse files
Fix 404s
1 parent 8c12d7a commit ee5f296

File tree

1 file changed

+2
-2
lines changed
  • docs/applications/containers/deploy-container-image-to-kubernetes

1 file changed

+2
-2
lines changed

docs/applications/containers/deploy-container-image-to-kubernetes/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ EXPOSE 80
245245

246246
echo -e "public/\n.git/\n.gitmodules/\n.gitignore" >> .dockerignore
247247

248-
1. Follow the steps 2 - 4 in the [Version Control the Site with Git](/docs/applications/containers/deploy-static-site-with-kubernetes/#version-control-the-site-with-git) section to add any new files created in this section to your local git repository.
248+
1. Follow the steps 2 - 4 in the [Version Control the Site with Git](/docs/applications/containers/deploy-container-image-to-kubernetes/#version-control-the-site-with-git) section to add any new files created in this section to your local git repository.
249249

250250
### Build the Docker Image
251251

@@ -430,7 +430,7 @@ spec:
430430
- The deployment's object `spec` states that the deployment should have 3 replica pods. This means at any given time the cluster will have 3 pods that run the Hugo site service.
431431
- The `template` field provides all the information needed to create actual pods.
432432
- The label `app: hugo-site` helps the deployment know which service pods to target.
433-
- The `container` field states that any containers connected to this deployment should use the Hugo site image `mydockerhubusername/hugo-site:v1` that was created in the [Build the Docker Image](/docs/applications/containers/deploy-static-site-with-kubernetes/#build-the-docker-image) section of this guide.
433+
- The `container` field states that any containers connected to this deployment should use the Hugo site image `mydockerhubusername/hugo-site:v1` that was created in the [Build the Docker Image](/docs/applications/containers/deploy-container-image-to-kubernetes/#build-the-docker-image) section of this guide.
434434
- `imagePullPolicy: Always` means that the container image will be pulled every time the pod is started.
435435
- `containerPort: 80` states the port number to expose on the pod's IP address. The system does not rely on this field to expose the container port, instead, it provides information about the network connections a container uses.
436436

0 commit comments

Comments
 (0)