Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/reference/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ _Validation:_
_Appears in:_
- [AutoscalerOptions](#autoscaleroptions)

| Field | Description |
| --- | --- |
| `v1` | |
| `v2` | |


#### DeletionPolicy
Expand Down Expand Up @@ -82,6 +86,12 @@ _Underlying type:_ _string_
_Appears in:_
- [DeletionPolicy](#deletionpolicy)

| Field | Description |
| --- | --- |
| `DeleteCluster` | |
| `DeleteWorkers` | |
| `DeleteSelf` | |
| `DeleteNone` | |


#### DeletionStrategy
Expand Down Expand Up @@ -155,6 +165,12 @@ _Underlying type:_ _string_
_Appears in:_
- [RayJobSpec](#rayjobspec)

| Field | Description |
| --- | --- |
| `K8sJobMode` | |
| `HTTPMode` | |
| `InteractiveMode` | |
| `SidecarMode` | |


#### RayCluster
Expand Down Expand Up @@ -333,6 +349,10 @@ _Underlying type:_ _string_
_Appears in:_
- [RayServiceUpgradeStrategy](#rayserviceupgradestrategy)

| Field | Description |
| --- | --- |
| `NewCluster` | During upgrade, NewCluster strategy will create new upgraded cluster and switch to it when it becomes ready<br /> |
| `None` | No new cluster will be created while the strategy is set to None<br /> |


#### RedisCredential
Expand Down
2 changes: 1 addition & 1 deletion ray-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ CRD_REF_DOCS = $(LOCALBIN)/crd-ref-docs
$(CRD_REF_DOCS): $(LOCALBIN)
.PHONY: crd-ref-docs
crd-ref-docs: $(CRD_REF_DOCS) ## Download crd-ref-docs locally if necessary.
test -s $(CRD_REF_DOCS) || GOBIN=$(LOCALBIN) go install github.com/elastic/crd-ref-docs@v0.0.12
test -s $(CRD_REF_DOCS) || GOBIN=$(LOCALBIN) go install github.com/elastic/crd-ref-docs@v0.2.0

.PHONY: clean
clean:
Expand Down
Loading