Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[src] - ocean gke - add AutoUpdate field #676

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions api/services/ocean/gke/schemas/ocean-autoUpdate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
type: object
title: auto-update
description: The Ocean Kubernetes AutoUpdate object. If set to 'true' ocean will ensure that your clusters have an up to date configuration according to the respective GKE cluster.
properties:
isEnabled:
type: boolean
description: Enable the Ocean Kubernetes AutoUpdate.
default: true
example: true
2 changes: 2 additions & 0 deletions api/services/ocean/gke/schemas/oceanCluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ properties:
example: us-central1-a
autoScaler:
$ref: "../schemas/ocean-autoScaler.yaml"
autoUpdate:
$ref: "../schemas/ocean-autoUpdate.yaml"
capacity:
$ref: "../schemas/ocean-capacity.yaml"
strategy:
Expand Down
2 changes: 2 additions & 0 deletions api/services/ocean/gke/schemas/oceanClusterCreate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ properties:
example: us-central1-a
autoScaler:
$ref: "../schemas/ocean-autoScaler.yaml"
autoUpdate:
$ref: "../schemas/ocean-autoUpdate.yaml"
capacity:
$ref: "../schemas/ocean-capacity.yaml"
strategy:
Expand Down
2 changes: 2 additions & 0 deletions api/services/ocean/gke/schemas/oceanClusterUpdate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ properties:
Add a name for the Ocean cluster.
autoScaler:
$ref: "../schemas/ocean-autoScaler.yaml"
autoUpdate:
$ref: "../schemas/ocean-autoUpdate.yaml"
capacity:
$ref: "../schemas/ocean-capacity.yaml"
strategy:
Expand Down
2 changes: 2 additions & 0 deletions api/services/ocean/gke/schemas/oceanGkeImportResponse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ properties:
example: us-central1-a
autoScaler:
$ref: "../schemas/ocean-autoScaler.yaml"
autoUpdate:
$ref: "../schemas/ocean-autoUpdate.yaml"
capacity:
$ref: "../schemas/ocean-capacity.yaml"
compute:
Expand Down