Skip to content

Commit

Permalink
docs: update docs for upgrading readiness probe to HTTPS. Closes argo…
Browse files Browse the repository at this point in the history
  • Loading branch information
rbreeze authored Sep 1, 2020
1 parent de2185c commit 7e6a891
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ export ARGO_INSECURE_SKIP_VERIFY=true
argo --secure --insecure-skip-verify list
```

Tip: Don't forget to update your readiness probe to use HTTPS, [example](https://github.com/argoproj/argo/blob/master/test/e2e/manifests/mixins/argo-server-deployment.yaml).
Tip: Don't forget to update your readiness probe to use HTTPS. To do so, edit your `argo-server` Deployment's `readinessProbe` spec:

```
readinessProbe:
httpGet:
scheme: HTTPS
```

### Encrypted and Verified

Expand Down

0 comments on commit 7e6a891

Please sign in to comment.