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
3 changes: 3 additions & 0 deletions specification/resources/kubernetes/models/cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ properties:
routing_agent:
$ref: "routing_agent.yml"

p2p_oci_registry_plugin:
$ref: "p2p_oci_registry_plugin.yml"

amd_gpu_device_plugin:
$ref: "amd_gpu_device_plugin.yml"

Expand Down
3 changes: 3 additions & 0 deletions specification/resources/kubernetes/models/cluster_read.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@ properties:
coredns_autoscaler:
$ref: "coredns_autoscaler.yml"

p2p_oci_registry_plugin:
$ref: "p2p_oci_registry_plugin.yml"

required:
- name
- region
Expand Down
3 changes: 3 additions & 0 deletions specification/resources/kubernetes/models/cluster_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ properties:
routing_agent:
$ref: 'routing_agent.yml'

p2p_oci_registry_plugin:
$ref: "p2p_oci_registry_plugin.yml"

amd_gpu_device_plugin:
$ref: "amd_gpu_device_plugin.yml"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
type: object
nullable: true
description: An object specifying whether the Peer-to-peer OCI registry component should be enabled for the Kubernetes cluster.
properties:
enabled:
type: boolean
description: Indicates whether the Peer-to-peer OCI registry component is enabled.
example: true
8 changes: 8 additions & 0 deletions specification/resources/kubernetes/responses/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ kubernetes_clusters_all:
enabled: false
coredns_autoscaler:
enabled: false
p2p_oci_registry_plugin:
enabled: false
meta:
total: 1

Expand Down Expand Up @@ -263,6 +265,8 @@ kubernetes_single:
enabled: false
coredns_autoscaler:
enabled: false
p2p_oci_registry_plugin:
enabled: false

kubernetes_updated:
value:
Expand Down Expand Up @@ -394,6 +398,8 @@ kubernetes_updated:
enabled: false
coredns_autoscaler:
enabled: false
p2p_oci_registry_plugin:
enabled: false

kubernetes_clusters_create_basic_response:
value:
Expand Down Expand Up @@ -490,6 +496,8 @@ kubernetes_clusters_create_basic_response:
enabled: false
coredns_autoscaler:
enabled: false
p2p_oci_registry_plugin:
enabled: false

kubernetes_clusters_multi_pool_response:
value:
Expand Down
Loading