forked from ray-project/kuberay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
121 lines (100 loc) · 2.75 KB
/
Copy pathvalues.yaml
File metadata and controls
121 lines (100 loc) · 2.75 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Default values for kuberay-apiserver.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
name: kuberay-apiserver
image:
# -- Image repository.
repository: quay.io/kuberay/apiserver
# -- Image tag.
tag: v1.6.0
# -- Image pull policy.
pullPolicy: IfNotPresent
# Uncomment allowOrigin to enable CORS
# It'll set the Access-Control-Allow-Origin response header for the HTTP proxy.
cors:
# allowOrigin: "*"
# -- Extra labels.
labels: {}
# key1: value1
# key2: value2
# -- Extra annotations.
annotations: {}
# key1: value1
# key2: value2
serviceAccount:
# -- Specifies whether a service account should be created.
create: true
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: kuberay-apiserver
containerPort:
- name: http
containerPort: 8888
protocol: TCP
- name: grpc
containerPort: 8887
protocol: TCP
# -- Resource requests and limits for containers.
resources:
limits:
cpu: 500m
memory: 500Mi
requests:
cpu: 300m
memory: 300Mi
# -- Sidecar containers to run along with the main container.
sidecarContainers: []
# -- Node selector for pods.
nodeSelector: {}
# -- Affinity for pods.
affinity: {}
# -- Tolerations for pods.
tolerations: []
# Only one service type needs to be picked
service:
# -- Service type.
type: ClusterIP
# -- Service port.
ports:
- name: http
protocol: TCP
port: 8888
targetPort: 8888
- name: rpc
protocol: TCP
port: 8887
targetPort: 8887
# You can only enable an ingress or route, if you are using OpenShift cluster
# Also note that in order to enable ingress or route you need to use ClusterIP service
ingress:
enabled: false
annotations: {}
# For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName
# See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress
className: ""
tls: []
# openshift routes
route:
enabled: false
annotations: {}
# -- Install Default RBAC roles and bindings
rbacEnable: true
# -- The chart can be installed by users with permissions to a single namespace only
singleNamespaceInstall: false
# -- If set to true, APIServer v2 would be served on the same port as the APIServer v1.
enableAPIServerV2: true
# security definition. Comment it out if security is not required
security:
# -- security proxy image.
proxy:
repository: quay.io/kuberay/security-proxy
tag: nightly
pullPolicy: IfNotPresent
# -- security proxy environment variables.
env:
HTTP_LOCAL_PORT: 8988
GRPC_LOCAL_PORT: 8987
SECURITY_TOKEN: "12345"
SECURITY_PREFIX: "/"
ENABLE_GRPC: "true"