mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-31 16:23:44 +00:00

Adds a new IDP (Identity Provider) Custom Resource Definition to the Tailscale Kubernetes operator. This allows users to deploy and manage tsidp instances as Kubernetes resources. Updates #16666 Signed-off-by: Raj Singh <raj@tailscale.com>
16 lines
320 B
YAML
16 lines
320 B
YAML
apiVersion: tailscale.com/v1alpha1
|
|
kind: IDP
|
|
metadata:
|
|
name: idp-example
|
|
spec:
|
|
hostname: idp-example
|
|
enableFunnel: true
|
|
tags:
|
|
- tag:k8s
|
|
statefulSet:
|
|
pod:
|
|
container:
|
|
image: ghcr.io/rajsinghtech/tailscale/tsidp:57
|
|
env:
|
|
- name: TAILSCALE_USE_WIP_CODE
|
|
value: "1" |