Skip to content

Commit

Permalink
Update documentation and sample deployment to reflect the 8080 port c…
Browse files Browse the repository at this point in the history
…hange
  • Loading branch information
nabsul committed Apr 21, 2022
1 parent 219c60c commit 9b5c869
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Congratulations, KCert should now be running!
To check that everything is running as expected:

- Run `kubectl -n kcert logs svc/kcert` and make sure there are no error messages
- Run `kubectl -n kcert port-forward svc/kcert 80` and go to `http://localhost:80` in your browser
- Run `kubectl -n kcert port-forward svc/kcert 8080` and go to `http://localhost:8080` in your browser

### Recommended: Email Notifications

Expand Down
6 changes: 6 additions & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ spec:
ports:
- containerPort: 80
name: http
- containerPort: 8080
name: http-admin
env:
- name: ACME__DIRURL
value: # https://acme-staging-v02.api.letsencrypt.org/directory or https://acme-v02.api.letsencrypt.org/directory
Expand All @@ -103,5 +105,9 @@ spec:
protocol: TCP
port: 80
targetPort: 80
- name: http-admin
protocol: TCP
port: 8080
targetPort: 8080
selector:
app: kcert

0 comments on commit 9b5c869

Please sign in to comment.