-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathvalues.yaml
executable file
·37 lines (34 loc) · 1.42 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
gitpod:
# This field must be set to your domain name. Leaving it set to its default value will result in
# a non-functional installation.
hostname: your-domain.com
# If you have a static IP that your domain resolves to, set it here.
# Leaving this field set to its default value is fine. Kubernetes will assign you an IP address
# during deployment.
components:
proxy:
loadBalancerIP: null
# Gitpod needs at least one auth provider to allow users to log in.
# The auth providers below are examples only. Please change/remove them to fit your installation.
authProviders:
- id: "Example Github"
host: "github.com"
protocol: "https"
type: "GitHub"
oauth:
clientId: "your-client-ID-here"
clientSecret: "your-client-secret-here"
callBackUrl: "https://your-domain.com/auth/github/callback"
settingsUrl: "https://github.com/settings/connections/applications/your-client-ID-here"
- id: "Example Gitlab"
host: "gitlab.com"
protocol: "https"
type: "GitLab"
oauth:
clientId: "your-application-ID-here"
clientSecret: "your-secret-here"
callBackUrl: "https://your-domain.com/auth/gitlab/callback"
settingsUrl: "gitlab.com/profile/applications"
# RBAC is enabled by default. If your cluster does not use RBAC, set this flag to false so that
# we do not attempt to install PodSecurityPolicies and the likes.
installPodSecurityPolicies: true