ContainerImage.Pinniped/deploy
Matt Moyer c1c75a8f22
Add kube_cert_agent_image value to main ytt template.
This needs to be overridden for Tilt usage, since the main image referenced by Tilt isn't actually pullable.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
2020-10-05 15:18:38 -05:00
..
README.md Update documentation to use the deployment YAML files from the releases 2020-09-24 17:56:21 -07:00
config.pinniped.dev_credentialissuerconfigs.yaml Move CredentialIssuerConfig into new "config.pinniped.dev" API group. 2020-09-18 16:38:45 -05:00
deployment.yaml Add kube_cert_agent_image value to main ytt template. 2020-10-05 15:18:38 -05:00
idp.pinniped.dev_webhookidentityproviders.yaml Define the WebhookIdentityProvider CRD. 2020-09-15 11:44:23 -05:00
rbac.yaml Integration tests are passing ayooooooooooooooo 2020-09-23 12:47:04 -04:00
values.yaml Add kube_cert_agent_image value to main ytt template. 2020-10-05 15:18:38 -05:00

README.md

Deploying

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 deploy-local-user-authenticator/README.md for details.

Installing the Latest Version with Default Options

kubectl apply -f https://github.com/vmware-tanzu/pinniped/releases/download/$(curl https://api.github.com/repos/vmware-tanzu/pinniped/releases/latest -s | jq .name -r)/install-pinniped.yaml

Installing an Older Version with Default Options

Choose your preferred release version number and use it to replace the version number in the URL below.

# Replace v0.2.0 with your preferred version in the URL below
kubectl apply -f https://github.com/vmware-tanzu/pinniped/releases/download/v0.2.0/install-pinniped.yaml

Installing with Custom Options

Creating your own deployment YAML file requires ytt from Carvel to template the YAML files in the deploy directory. Either install ytt or use the container image from Dockerhub.

  1. git clone this repo and git checkout the release version tag of the release that you would like to deploy.
  2. The configuration options are in deploy/values.yml. Fill in the values in that file, or override those values using additional ytt command-line options in the command below. Use the release version tag as the image_tag value.
  3. In a terminal, cd to this deploy directory
  4. To generate the final YAML files, run ytt --file .
  5. Deploy the generated YAML using your preferred deployment tool, such as kubectl or kapp. For example: ytt --file . | kapp deploy --yes --app pinniped --diff-changes --file -