ContainerImage.Pinniped/deploy/concierge
Ryan Richard 1301018655 Support installing concierge and supervisor into existing namespace
- New optional ytt value called `into_namespace` means install into that
  preexisting namespace rather than creating a new namespace for each app
- Also ensure that every resource that is created statically by our yaml
  at install-time by either app is labeled consistently
- Also support adding custom labels to all of those resources from a
  new ytt value called `custom_labels`
2020-10-14 15:05:42 -07:00
..
config.pinniped.dev_credentialissuerconfigs.yaml Move all three deployment dirs under a new top-level deploy/ dir 2020-10-09 10:00:22 -07:00
deployment.yaml Support installing concierge and supervisor into existing namespace 2020-10-14 15:05:42 -07:00
helpers.lib.yaml Support installing concierge and supervisor into existing namespace 2020-10-14 15:05:42 -07:00
idp.pinniped.dev_webhookidentityproviders.yaml Move all three deployment dirs under a new top-level deploy/ dir 2020-10-09 10:00:22 -07:00
rbac.yaml Support installing concierge and supervisor into existing namespace 2020-10-14 15:05:42 -07:00
README.md Move all three deployment dirs under a new top-level deploy/ dir 2020-10-09 10:00:22 -07:00
values.yaml Support installing concierge and supervisor into existing namespace 2020-10-14 15:05:42 -07:00
z0_crd_overlay.yaml Support installing concierge and supervisor into existing namespace 2020-10-14 15:05:42 -07:00

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/concierge 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/concierge/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/concierge 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 -