From 7d7597e2a8adaad9b9719a08d16042e2a0e92d04 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Petersen" Date: Thu, 24 Aug 2023 14:53:42 -0400 Subject: [PATCH] commit generated schema-openapi.yml --- deploy_carvel/concierge/schema-openapi.yml | 16 +++++++++++++++ deploy_carvel/supervisor/schema-openapi.yml | 22 +++++++++++++++++++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/deploy_carvel/concierge/schema-openapi.yml b/deploy_carvel/concierge/schema-openapi.yml index 4022e656..bb6979ba 100644 --- a/deploy_carvel/concierge/schema-openapi.yml +++ b/deploy_carvel/concierge/schema-openapi.yml @@ -43,6 +43,22 @@ components: type: string description: Specify either an image_digest or an image_tag. If both are given, only image_digest will be used. default: latest + package_image_repo: + type: string + nullable: true + default: null + package_image_digest: + type: string + nullable: true + default: null + package_image_tag: + type: string + nullable: true + default: null + package_version: + type: string + nullable: true + default: null kube_cert_agent_image: type: string description: Optionally specify a different image for the "kube-cert-agent" pod which is scheduled on the control plane. This image needs only to include `sleep` and `cat` binaries. By default, the same image specified for image_repo/image_digest/image_tag will be re-used. diff --git a/deploy_carvel/supervisor/schema-openapi.yml b/deploy_carvel/supervisor/schema-openapi.yml index e8d64a88..de4ded57 100644 --- a/deploy_carvel/supervisor/schema-openapi.yml +++ b/deploy_carvel/supervisor/schema-openapi.yml @@ -33,8 +33,9 @@ components: default: 2 image_repo: type: string + nullable: true description: Specify either an image_digest or an image_tag. If both are given, only image_digest will be used. - default: projects.registry.vmware.com/pinniped/pinniped-server + default: null image_digest: type: string nullable: true @@ -42,8 +43,25 @@ components: default: null image_tag: type: string + nullable: true description: Specify either an image_digest or an image_tag. If both are given, only image_digest will be used. - default: latest + default: null + package_image_repo: + type: string + nullable: true + default: null + package_image_digest: + type: string + nullable: true + default: null + package_image_tag: + type: string + nullable: true + default: null + package_version: + type: string + nullable: true + default: null image_pull_dockerconfigjson: type: object additionalProperties: false