Skip to content

Commit 8e7654e

Browse files
committed
Merge remote-tracking branch 'origin' into release-1.5
2 parents 21cf8cc + 1c846b3 commit 8e7654e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1083
-167
lines changed

.buildkite/setup-env.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# Install Go
44
export PATH=$PATH:/usr/local/go/bin
55

6+
# Pin Docker API version
7+
export DOCKER_API_VERSION=1.43
8+
69
# Install kind
710
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
811
chmod +x ./kind

dashboard/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RUN \
4545
FROM base AS runner
4646
WORKDIR /app
4747

48-
ENV NODE_ENV production
48+
ENV NODE_ENV=production
4949
# Uncomment the following line in case you want to disable telemetry during runtime.
5050
# ENV NEXT_TELEMETRY_DISABLED 1
5151

@@ -67,8 +67,9 @@ USER nextjs
6767

6868
EXPOSE 3000
6969

70-
ENV PORT 3000
70+
ENV PORT=3000
7171

7272
# server.js is created by next build from the standalone output
7373
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
74-
CMD HOSTNAME="0.0.0.0" node server.js
74+
ENV HOSTNAME="0.0.0.0"
75+
CMD ["node", "server.js"]

dashboard/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3699,13 +3699,13 @@ __metadata:
36993699
linkType: hard
37003700

37013701
"js-yaml@npm:^4.1.0":
3702-
version: 4.1.0
3703-
resolution: "js-yaml@npm:4.1.0"
3702+
version: 4.1.1
3703+
resolution: "js-yaml@npm:4.1.1"
37043704
dependencies:
37053705
argparse: "npm:^2.0.1"
37063706
bin:
37073707
js-yaml: bin/js-yaml.js
3708-
checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f
3708+
checksum: 10c0/561c7d7088c40a9bb53cc75becbfb1df6ae49b34b5e6e5a81744b14ae8667ec564ad2527709d1a6e7d5e5fa6d483aa0f373a50ad98d42fde368ec4a190d4fae7
37093709
languageName: node
37103710
linkType: hard
37113711

docs/reference/api.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,35 @@ Package v1 contains API Schema definitions for the ray v1 API group
1616

1717

1818

19+
#### AuthMode
20+
21+
_Underlying type:_ _string_
22+
23+
AuthMode describes the authentication mode for the Ray cluster.
24+
25+
26+
27+
_Appears in:_
28+
- [AuthOptions](#authoptions)
29+
30+
31+
32+
#### AuthOptions
33+
34+
35+
36+
AuthOptions defines the authentication options for a RayCluster.
37+
38+
39+
40+
_Appears in:_
41+
- [RayClusterSpec](#rayclusterspec)
42+
43+
| Field | Description | Default | Validation |
44+
| --- | --- | --- | --- |
45+
| `mode` _[AuthMode](#authmode)_ | Mode specifies the authentication mode.<br />Supported values are "disabled" and "token".<br />Defaults to "token". | | Enum: [disabled token] <br /> |
46+
47+
1948
#### AutoscalerOptions
2049

2150

@@ -268,6 +297,7 @@ _Appears in:_
268297

269298
| Field | Description | Default | Validation |
270299
| --- | --- | --- | --- |
300+
| `authOptions` _[AuthOptions](#authoptions)_ | AuthOptions specifies the authentication options for the RayCluster. | | |
271301
| `suspend` _boolean_ | Suspend indicates whether a RayCluster should be suspended.<br />A suspended RayCluster will have head pods and worker pods deleted. | | |
272302
| `managedBy` _string_ | ManagedBy is an optional configuration for the controller or entity that manages a RayCluster.<br />The value must be either 'ray.io/kuberay-operator' or 'kueue.x-k8s.io/multikueue'.<br />The kuberay-operator reconciles a RayCluster which doesn't have this field at all or<br />the field value is the reserved string 'ray.io/kuberay-operator',<br />but delegates reconciling the RayCluster with 'kueue.x-k8s.io/multikueue' to the Kueue.<br />The field is immutable. | | |
273303
| `autoscalerOptions` _[AutoscalerOptions](#autoscaleroptions)_ | AutoscalerOptions specifies optional configuration for the Ray autoscaler. | | |

helm-chart/kuberay-operator/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ spec:
147147
| nameOverride | string | `"kuberay-operator"` | String to partially override release name. |
148148
| fullnameOverride | string | `"kuberay-operator"` | String to fully override release name. |
149149
| componentOverride | string | `"kuberay-operator"` | String to override component name. |
150+
| replicas | int | `1` | Number of replicas for the KubeRay operator Deployment. |
150151
| image.repository | string | `"quay.io/kuberay/operator"` | Image repository. |
151152
| image.tag | string | `"v1.5.0"` | Image tag. |
152153
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy. |

helm-chart/kuberay-operator/crds/ray.io_rayclusters.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

helm-chart/kuberay-operator/crds/ray.io_rayjobs.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

helm-chart/kuberay-operator/templates/_helpers.tpl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,15 @@ rules:
169169
- pods/resize
170170
verbs:
171171
- patch
172+
- apiGroups:
173+
- ""
174+
resources:
175+
- secrets
176+
verbs:
177+
- create
178+
- get
179+
- list
180+
- watch
172181
- apiGroups:
173182
- ""
174183
resources:

helm-chart/kuberay-operator/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
spec:
12-
replicas: 1
12+
replicas: {{ .Values.replicas | default 1 }}
1313
strategy:
1414
type: Recreate
1515
selector:

0 commit comments

Comments
 (0)