Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,20 @@ To confirm your change has been applied in the cluster, you can connect to the c
To make sure your pod is running as expected and to check the status of your HelmRelease run the following commands (make sure to swap YourGithubUsername with your GitHub username):

```command
kubectl get hr labs-YourGithubUsername-nodejs -n labs
kubectl get pods -l app.kubernetes.io/name=labs-YourGithubUsername-nodejs -n labs
kubectl get hr labs-YourGithubUsername-nodejs -n labs
kubectl get pods -l app.kubernetes.io/instance=labs-YourGithubUsername-nodejs -n labs
```

Alternatively, if you are having trouble finding your pods you can display all pods in the labs namespace:

```command
kubectl get pods -n labs
```

For more detailed information about your pod you can run:

```command
kubectl describe pod <pod-name>
```

### Access application
Expand Down Expand Up @@ -183,6 +195,9 @@ We are going to update the application by changing the text on the home page.
10. Reload your application in your browser and check it now shows your change to the heading:
![Hello World](images/HelloWorld.png)

If you are having any issues you might want to confirm that the Flux has picked up your new image by [checking for the commit related to your application in the cnp-flux-config repository](https://github.com/hmcts/cnp-flux-config/commits/master/).
Keep in mind that new changes are commited very frequently in this repository so if you made the change long time ago you might need to scroll through a lot of commits.

## Feedback

[comment]: <> (As of March 2022)
Expand Down