2020-07-07 20:17:34 +00:00
|
|
|
# Deploying
|
|
|
|
|
2020-09-10 02:06:39 +00:00
|
|
|
## Connecting Pinniped to an Identity Provider
|
|
|
|
|
|
|
|
If you would like to try Pinniped, but you don't have a compatible identity provider,
|
|
|
|
you can use Pinniped's test identity provider.
|
|
|
|
See [../deplot-test-webhook/README.md](../deplot-test-webhook/README.md)
|
|
|
|
for details.
|
|
|
|
|
2020-08-27 17:14:03 +00:00
|
|
|
## Tools
|
2020-07-08 01:50:35 +00:00
|
|
|
|
2020-08-27 17:14:03 +00:00
|
|
|
This example deployment uses `ytt` from [Carvel](https://carvel.dev/) to template the YAML files.
|
|
|
|
Either [install `ytt`](https://get-ytt.io/) or use the [container image from Dockerhub](https://hub.docker.com/r/k14s/image/tags).
|
2020-07-07 20:17:34 +00:00
|
|
|
|
2020-08-27 17:14:03 +00:00
|
|
|
## Procedure
|
|
|
|
|
|
|
|
1. The configuration options are in [values.yml](values.yaml). Fill in the values in that file, or override those values
|
|
|
|
using `ytt` command-line options in the command below.
|
2020-07-07 20:17:34 +00:00
|
|
|
2. In a terminal, cd to this `deploy` directory
|
2020-08-27 17:14:03 +00:00
|
|
|
3. To generate the final YAML files, run: `ytt --file .`
|
|
|
|
4. Deploy the generated YAML using your preferred deployment tool, such as `kubectl` or [`kapp`](https://get-kapp.io/).
|
|
|
|
For example: `ytt --file . | kapp deploy --yes --app pinniped --diff-changes --file -`
|