This change allows configuration of the http and https listeners used by the supervisor. TCP (IPv4 and IPv6 with any interface and port) and Unix domain socket based listeners are supported. Listeners may also be disabled. Binding the http listener to TCP addresses other than 127.0.0.1 or ::1 is deprecated. The deployment now uses https health checks. The supervisor is always able to complete a TLS connection with the use of a bootstrap certificate that is signed by an in-memory certificate authority. To support sidecar containers used by service meshes, Unix domain socket based listeners include ACLs that allow writes to the socket file from any runAsUser specified in the pod's containers. Signed-off-by: Monis Khan <mok@vmware.com>
4.4 KiB
title | description | cascade | menu | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Install the Pinniped Supervisor | Install the Pinniped Supervisor service in a Kubernetes cluster. |
|
|
This guide shows you how to install the Pinniped Supervisor, which allows seamless login across one or many Kubernetes clusters.
In the examples below, you can replace {{< latestversion >}} with your preferred version number. You can find a list of Pinniped releases on GitHub.
Prerequisites
You should have a Kubernetes cluster with working HTTPS ingress or load balancer capabilities. Unlike the Concierge app, which can only run on [supported Kubernetes cluster types]({{< ref "supported-clusters" >}}), the Supervisor app can run on almost any Kubernetes cluster.
The Supervisor app controls authentication to Kubernetes clusters, so access to its settings and internals should be protected carefully. Typically, the Supervisor is installed on a secure Kubernetes cluster which is only accessible by administrators, separate from the clusters for which it is providing authentication services which are accessible by application developers or devops teams.
With default options
Using kapp
-
Install the latest version of the Supervisor into the
pinniped-supervisor
namespace with default options using kapp:kapp deploy --app pinniped-supervisor --file https://get.pinniped.dev/{{< latestversion >}}/install-pinniped-supervisor.yaml
Using kubectl
-
Install the latest version of the Supervisor into the
pinniped-supervisor
namespace with default options:kubectl apply -f https://get.pinniped.dev/{{< latestversion >}}/install-pinniped-supervisor.yaml
With custom options
Pinniped uses ytt from Carvel as a templating system.
-
Install the
ytt
andkapp
command-line tools using the instructions from the Carvel documentation. -
Clone the Pinniped GitHub repository and visit the
deploy/supervisor
directory:git clone git@github.com:vmware-tanzu/pinniped.git
cd pinniped/deploy/supervisor
-
Decide which release version you would like to install. All release versions are listed on GitHub.
-
Checkout your preferred version tag, e.g.
{{< latestversion >}}
:git checkout {{< latestversion >}}
-
Customize configuration parameters:
-
See the default values for documentation about individual configuration parameters. For example, you can change the number of Concierge pods by setting
replicas
or apply custom annotations to the impersonation proxy service usingimpersonation_proxy_spec
. -
In a different directory, create a new YAML file to contain your site-specific configuration. For example, you might call this file
site/dev-env.yaml
.In the file, add the special ytt comment for a values file and the YAML triple-dash which starts a new YAML document. Then add custom overrides for any of the parameters from
values.yaml
.Override the
image_tag
value to match your preferred version tag, e.g.{{< latestversion >}}
, to ensure that you use the version of the server which matches these templates.Here is an example which overrides the image tag, the default logging level, and the number of replicas:
#@data/values --- image_tag: {{< latestversion >}} log_level: debug replicas: 1
-
Parameters for which you would like to use the default value should be excluded from this file.
-
If you are using a GitOps-style workflow to manage the installation of Pinniped, then you may wish to commit this new YAML file to your GitOps repository.
-
-
Render templated YAML manifests:
ytt --file . --file site/dev-env.yaml
By putting the override file last in the list of
--file
options, it will override the default values. -
Deploy the templated YAML manifests:
ytt --file . --file site/dev-env.yaml | kapp deploy --app pinniped-supervisor --file -
Next steps
Next, [configure the Supervisor as an OIDC issuer]({{< ref "configure-supervisor" >}})!