diff --git a/jupyter/terraform_notebook.ipynb b/jupyter/terraform_notebook.ipynb index f600e2ef..1832d958 100644 --- a/jupyter/terraform_notebook.ipynb +++ b/jupyter/terraform_notebook.ipynb @@ -2,6 +2,11 @@ "cells": [ { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "# Pre-requisites\n", "\n", @@ -37,16 +42,15 @@ " * Python3.9\n", " * pip3\n", " * JetBrains PyCharm\n" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } - }, - { - "cell_type": "markdown", + }, "source": [ "# Preparation\n", "\n", @@ -54,17 +58,15 @@ "\n", "1. Create a GCP account on [https://cloud.google.com](https://cloud.google.com), using a Google account\n", "2. Redeem your academic coupon on GCP, see Brightspace for information on obtaining the $\\$50 academic coupon, or use the free $\\$300 credits for new users provided by Google." - ], + ] + }, + { + "cell_type": "markdown", "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } }, - "outputs": [] - }, - { - "cell_type": "markdown", "source": [ "# Deployment\n", "\n", @@ -75,17 +77,16 @@ "* [`terraform-gke/variables.tf`](terraform-gke/variables.tf)\n", "* [`terraform-dependencies/variables.tf`](terraform-dependencies/variables.tf)\n", "\n" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, "outputs": [], "source": [ "ACCOUNT_ID=\"terraform-iam-service-account\"\n", @@ -93,112 +94,93 @@ "PRIVILEGED_ACCOUNT_ID=\"${ACCOUNT_ID}@${PROJECT_ID}.iam.gserviceaccount.com\"\n", "CLUSTER_NAME=\"fltk-testbed-cluster\"\n", "REGION=\"us-central1\"" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } + ] }, { "cell_type": "markdown", - "source": [ - "## Project creation\n", - "\n", - "Next, we create a project using the `PROJECT_ID` variable, and get all the billing account information." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "## Project creation\n", + "\n", + "Next, we create a project using the `PROJECT_ID` variable, and get all the billing account information." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "gcloud projects create $PROJECT_ID --set-as-default\n", - "gcloud beta billing accounts list # Copy the Account ID of the account" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "gcloud projects create $PROJECT_ID --set-as-default\n", + "gcloud beta billing accounts list # Copy the Account ID of the account" + ] }, { "cell_type": "markdown", - "source": [ - "Copy the billing account identifier, e.g. `015594-41687F-092941`, and assign to the variable in the cell below" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Copy the billing account identifier, e.g. `015594-41687F-092941`, and assign to the variable in the cell below" + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "BILLING_ACCOUNT=\"015594-41687F-092941\"" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "BILLING_ACCOUNT=\"015594-41687F-092941\"" + ] }, { "cell_type": "markdown", - "source": [ - "Setup billing and enable services, this will allow us to create a GKE cluster (Google managed Kubernetes cluster), and push and pull containers to our private container repo." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Setup billing and enable services, this will allow us to create a GKE cluster (Google managed Kubernetes cluster), and push and pull containers to our private container repo." + ] }, { "cell_type": "code", - "execution_count": 24, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "billingAccountName: billingAccounts/015594-41687F-092941\n", - "billingEnabled: true\n", - "name: projects/qpecs-fltk-2022/billingInfo\n", - "projectId: qpecs-fltk-2022\n", - "Operation \"operations/acat.p2-507430712695-6f66cea7-2ce4-4190-b9eb-4a0e403e4744\" finished successfully.\n" - ] + "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" } - ], + }, + "outputs": [], "source": [ "# Setup billing to project\n", "gcloud beta billing projects link $PROJECT_ID --billing-account $BILLING_ACCOUNT\n", "# Enable services now billing is enabled\n", "gcloud services enable compute container --project $PROJECT_ID" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } + ] }, { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "## Creating a service-account\n", "\n", @@ -206,320 +188,17 @@ "will be used to create the cluster, and deploy the dependencies that we use.\n", "\n", "During the deployment we will make use of impersonation, to let *your* account utilize the service-account. For more information about this practise, see also [this](https://cloud.google.com/blog/topics/developers-practitioners/using-google-cloud-service-account-impersonation-your-terraform-code) blog by Google." - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", - "execution_count": 5, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "ERROR: (gcloud.iam.service-accounts.create) Resource in projects [qpecs-fltk-2022] is the subject of a conflict: Service account terraform-iam-service-account already exists within project projects/qpecs-fltk-2022.\n", - "- '@type': type.googleapis.com/google.rpc.ResourceInfo\n", - " resourceName: projects/qpecs-fltk-2022/serviceAccounts/terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P8RO2U=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P86WcA=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P9pnUA=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P-SV9E=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.developer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P_DuYo=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.developer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/iam.serviceAccountAdmin\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1P_jnAQ=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.developer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/iam.serviceAccountAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/iam.serviceAccountUser\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1QAOUYI=\n", - "version: 1\n", - "Updated IAM policy for project [qpecs-fltk-2022].\n", - "bindings:\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.networkAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.securityAdmin\n", - "- members:\n", - " - serviceAccount:service-507430712695@compute-system.iam.gserviceaccount.com\n", - " role: roles/compute.serviceAgent\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/compute.viewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.clusterViewer\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/container.developer\n", - "- members:\n", - " - serviceAccount:service-507430712695@container-engine-robot.iam.gserviceaccount.com\n", - " role: roles/container.serviceAgent\n", - "- members:\n", - " - serviceAccount:service-507430712695@containerregistry.iam.gserviceaccount.com\n", - " role: roles/containerregistry.ServiceAgent\n", - "- members:\n", - " - serviceAccount:507430712695-compute@developer.gserviceaccount.com\n", - " - serviceAccount:507430712695@cloudservices.gserviceaccount.com\n", - " role: roles/editor\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/iam.serviceAccountAdmin\n", - "- members:\n", - " - serviceAccount:terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\n", - " role: roles/iam.serviceAccountUser\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/owner\n", - "- members:\n", - " - serviceAccount:service-507430712695@gcp-sa-pubsub.iam.gserviceaccount.com\n", - " role: roles/pubsub.serviceAgent\n", - "etag: BwXm1QA3zP0=\n", - "version: 1\n" - ] + "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" } - ], + }, + "outputs": [], "source": [ "function enable_gcp_role () {\n", " gcloud projects add-iam-policy-binding \\\n", @@ -540,29596 +219,290 @@ "enable_gcp_role \"iam.serviceAccountAdmin\"\n", "enable_gcp_role \"iam.serviceAccountUser\"\n", "enable_gcp_role \"compute.networkAdmin\"" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } + ] }, { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "## Enable impersonation\n", "With the service account created, we must enable impersonation, to allow the main account of the project to make use of the service account. For more information see also the [`add-iam-policy-binding`](https://cloud.google.com/sdk/gcloud/reference/iam/service-accounts/add-iam-policy-binding) reference.\n", "\n", "Assign your `google_account` mail to the `OWNER_MAIL` variable, and run the command box below." - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", - "execution_count": 6, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Updated IAM policy for serviceAccount [terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com].\n", - "bindings:\n", - "- members:\n", - " - user:jargsnork@gmail.com\n", - " role: roles/iam.serviceAccountTokenCreator\n", - "etag: BwXm1QDSgg0=\n", - "version: 1\n" - ] + "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" } - ], + }, + "outputs": [], "source": [ "OWNER_MAIL=\"jargsnork@gmail.com\"\n", "gcloud iam service-accounts add-iam-policy-binding $PRIVILEGED_ACCOUNT_ID \\\n", " --member=\"user:$OWNER_MAIL\" \\\n", " --role=roles/iam.serviceAccountTokenCreator \\\n", " --project $PROJECT_ID" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } + ] }, { "cell_type": "markdown", - "source": [ - "## Creating a Google managed cluster (GKE)\n", - "To create the cluster, first change the active directory to the `terraform-gke` directory." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "## Creating a Google managed cluster (GKE)\n", + "To create the cluster, first change the active directory to the `terraform-gke` directory." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "cd terraform-gke" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "cd terraform-gke" + ] }, { "cell_type": "markdown", - "source": [ - "Init the directory, to initialize the Terraform module." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Init the directory, to initialize the Terraform module." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "terraform init -reconfigure" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform init -reconfigure" + ] }, { "cell_type": "markdown", - "source": [ - "Next, we can check whether we can create a cluster. No warnings or errors should occur during this process. It may take a while to complete." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Next, we can check whether we can create a cluster. No warnings or errors should occur during this process. It may take a while to complete." + ] }, { "cell_type": "code", - "execution_count": 12, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001B[0m\u001B[1mdata.google_service_account_access_token.default: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_service_account_access_token.default: Read complete after 0s [id=projects/-/serviceAccounts/terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com]\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_client_config.default: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_client_config.default: Read complete after 0s [id=projects/qpecs-fltk-2022/regions//zones/]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_container_engine_versions.region: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_compute_zones.available: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_container_engine_versions.region: Read complete after 0s [id=2022-08-22 14:12:19.966472 +0000 UTC]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_compute_zones.available: Read complete after 0s [id=projects/qpecs-fltk-2022/regions/us-central1]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_container_engine_versions.zone: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.gke.data.google_container_engine_versions.zone: Read complete after 0s [id=2022-08-22 14:12:20.347245 +0000 UTC]\u001B[0m\n", - "\n", - "Terraform used the selected providers to generate the following execution plan.\n", - "Resource actions are indicated with the following symbols:\n", - " \u001B[32m+\u001B[0m create\n", - " \u001B[36m<=\u001B[0m read (data resources)\n", - "\u001B[0m\n", - "Terraform will perform the following actions:\n", - "\n", - "\u001B[1m # data.google_compute_subnetwork.subnetwork\u001B[0m will be read during apply\u001B[0m\n", - " # (depends on a resource or a module with changes pending)\u001B[0m\n", - "\u001B[0m \u001B[36m<=\u001B[0m\u001B[0m data \"google_compute_subnetwork\" \"subnetwork\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdescription\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mgateway_address\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mip_cidr_range\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"gcp-private-subnetwork\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnetwork\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mprivate_ip_google_access\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mregion\u001B[0m\u001B[0m = \"us-central1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0msecondary_ip_range\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mself_link\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - "\u001B[1m # module.gke.google_container_cluster.primary\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"google_container_cluster\" \"primary\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster_ipv4_cidr\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdatapath_provider\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdefault_max_pods_per_node\u001B[0m\u001B[0m = 110\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_binary_authorization\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_intranode_visibility\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_kubernetes_alpha\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_legacy_abac\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_shielded_nodes\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mendpoint\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlabel_fingerprint\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocation\u001B[0m\u001B[0m = \"us-central1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlogging_service\u001B[0m\u001B[0m = \"logging.googleapis.com/kubernetes\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmaster_version\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_master_version\u001B[0m\u001B[0m = \"1.21\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmonitoring_service\u001B[0m\u001B[0m = \"monitoring.googleapis.com/kubernetes\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnetwork\u001B[0m\u001B[0m = \"projects/qpecs-fltk-2022/global/networks/gcp-private-network\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnetworking_mode\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_locations\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-c\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_version\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moperation\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mprivate_ipv6_google_access\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mremove_default_node_pool\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mself_link\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservices_ipv4_cidr\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0msubnetwork\u001B[0m\u001B[0m = \"projects/qpecs-fltk-2022/regions/us-central1/subnetworks/gcp-private-subnetwork\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtpu_ipv4_cidr_block\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0maddons_config {\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudrun_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisabled\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mload_balancer_type\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mdns_cache_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mgce_persistent_disk_csi_driver_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mgcp_filestore_csi_driver_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mhorizontal_pod_autoscaling {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisabled\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp_load_balancing {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisabled\u001B[0m\u001B[0m = true\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnetwork_policy_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisabled\u001B[0m\u001B[0m = true\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mauthenticator_groups_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0msecurity_group\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster_autoscaling {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = false\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mauto_provisioning_defaults {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mboot_disk_kms_key\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mimage_type\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moauth_scopes\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservice_account\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mconfidential_nodes {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mdatabase_encryption {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mstate\u001B[0m\u001B[0m = \"DECRYPTED\"\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault_snat_status {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisabled\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mip_allocation_policy {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster_ipv4_cidr_block\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster_secondary_range_name\u001B[0m\u001B[0m = \"ip-range-pods\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservices_ipv4_cidr_block\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservices_secondary_range_name\u001B[0m\u001B[0m = \"ip-range-scv\"\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mlogging_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_components\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmaintenance_policy {\n", - " \u001B[32m+\u001B[0m \u001B[0mdaily_maintenance_window {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mduration\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mstart_time\u001B[0m\u001B[0m = \"05:00\"\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmaster_auth {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mclient_certificate\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mclient_key\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster_ca_certificate\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mclient_certificate_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0missue_client_certificate\u001B[0m\u001B[0m = false\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmesh_certificates {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_certificates\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmonitoring_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_components\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnetwork_policy {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnode_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mboot_disk_kms_key\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_size_gb\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_type\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mguest_accelerator\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mimage_type\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlabels\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocal_ssd_count\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmachine_type\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmetadata\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_cpu_platform\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_group\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moauth_scopes\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mpreemptible\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservice_account\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mspot\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtags\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtaint\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mgcfs_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mgvnic {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mshielded_instance_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_integrity_monitoring\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_secure_boot\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mworkload_metadata_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmode\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnode_pool {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minitial_node_count\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minstance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanaged_instance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_pods_per_node\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"default-pool\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname_prefix\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_count\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_locations\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mversion\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmanagement {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_repair\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_upgrade\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnode_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_size_gb\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_type\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mguest_accelerator\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mimage_type\u001B[0m\u001B[0m = \"COS_CONTAINERD\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlabels\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocal_ssd_count\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmachine_type\u001B[0m\u001B[0m = \"e2-medium\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmetadata\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_cpu_platform\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moauth_scopes\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mpreemptible\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservice_account\u001B[0m\u001B[0m = \"terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mspot\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtags\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster-default-pool\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"default-node-pool\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtaint\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mshielded_instance_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_integrity_monitoring\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_secure_boot\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mworkload_metadata_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmode\u001B[0m\u001B[0m = \"GKE_METADATA\"\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mupgrade_settings {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_surge\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_unavailable\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnotification_config {\n", - " \u001B[32m+\u001B[0m \u001B[0mpubsub {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtopic\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease_channel {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mchannel\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeouts {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcreate\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdelete\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mupdate\u001B[0m\u001B[0m = \"45m\"\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mvertical_pod_autoscaling {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menabled\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mworkload_identity_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mworkload_pool\u001B[0m\u001B[0m = \"qpecs-fltk-2022.svc.id.goog\"\n", - " }\n", - " }\n", - "\n", - "\u001B[1m # module.gke.google_container_node_pool.pools[\"default-node-pool\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"google_container_node_pool\" \"pools\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster\u001B[0m\u001B[0m = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minitial_node_count\u001B[0m\u001B[0m = 1\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minstance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocation\u001B[0m\u001B[0m = \"us-central1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanaged_instance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_pods_per_node\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"default-node-pool\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname_prefix\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_count\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_locations\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-c\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moperation\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mversion\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mautoscaling {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_node_count\u001B[0m\u001B[0m = 2\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_node_count\u001B[0m\u001B[0m = 1\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmanagement {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_repair\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_upgrade\u001B[0m\u001B[0m = true\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnode_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_size_gb\u001B[0m\u001B[0m = 64\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_type\u001B[0m\u001B[0m = \"pd-standard\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mguest_accelerator\u001B[0m\u001B[0m = []\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mimage_type\u001B[0m\u001B[0m = \"COS_CONTAINERD\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlabels\u001B[0m\u001B[0m = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster_name\" = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"default-node-pool\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"node_pool\" = \"default-node-pool\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocal_ssd_count\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmachine_type\u001B[0m\u001B[0m = \"e2-medium\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmetadata\u001B[0m\u001B[0m = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster_name\" = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"disable-legacy-endpoints\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"node_pool\" = \"default-node-pool\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_cpu_platform\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moauth_scopes\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"https://www.googleapis.com/auth/cloud-platform\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mpreemptible\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservice_account\u001B[0m\u001B[0m = \"terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mspot\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtags\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster-default-node-pool\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"default-node-pool\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtaint\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mshielded_instance_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_integrity_monitoring\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_secure_boot\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mworkload_metadata_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmode\u001B[0m\u001B[0m = \"GKE_METADATA\"\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeouts {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcreate\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdelete\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mupdate\u001B[0m\u001B[0m = \"45m\"\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mupgrade_settings {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_surge\u001B[0m\u001B[0m = 1\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_unavailable\u001B[0m\u001B[0m = 0\n", - " }\n", - " }\n", - "\n", - "\u001B[1m # module.gke.google_container_node_pool.pools[\"medium-fltk-pool-1\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"google_container_node_pool\" \"pools\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcluster\u001B[0m\u001B[0m = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minitial_node_count\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minstance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocation\u001B[0m\u001B[0m = \"us-central1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanaged_instance_group_urls\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_pods_per_node\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"medium-fltk-pool-1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname_prefix\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_count\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnode_locations\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-c\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moperation\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mversion\u001B[0m\u001B[0m = (known after apply)\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mautoscaling {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_node_count\u001B[0m\u001B[0m = 4\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_node_count\u001B[0m\u001B[0m = 0\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mmanagement {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_repair\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_upgrade\u001B[0m\u001B[0m = true\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mnode_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_size_gb\u001B[0m\u001B[0m = 64\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdisk_type\u001B[0m\u001B[0m = \"pd-standard\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mguest_accelerator\u001B[0m\u001B[0m = []\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mimage_type\u001B[0m\u001B[0m = \"COS_CONTAINERD\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlabels\u001B[0m\u001B[0m = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster_name\" = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"node_pool\" = \"medium-fltk-pool-1\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlocal_ssd_count\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmachine_type\u001B[0m\u001B[0m = \"e2-medium\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmetadata\u001B[0m\u001B[0m = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster_name\" = \"freddie-testbed-cluster\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"disable-legacy-endpoints\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"node-pool-metadata-custom-value\" = \"medium-node-pool-fltk\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"node_pool\" = \"medium-fltk-pool-1\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_cpu_platform\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0moauth_scopes\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mpreemptible\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mservice_account\u001B[0m\u001B[0m = \"terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mspot\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtags\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gke-freddie-testbed-cluster-medium-fltk-pool-1\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mtaint\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = \"PREFER_NO_SCHEDULE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = \"medium-fltk-pool-1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = \"true\"\n", - " },\n", - " ]\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mshielded_instance_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_integrity_monitoring\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0menable_secure_boot\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mworkload_metadata_config {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmode\u001B[0m\u001B[0m = \"GKE_METADATA\"\n", - " }\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeouts {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcreate\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdelete\u001B[0m\u001B[0m = \"45m\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mupdate\u001B[0m\u001B[0m = \"45m\"\n", - " }\n", - "\n", - " \u001B[32m+\u001B[0m \u001B[0mupgrade_settings {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_surge\u001B[0m\u001B[0m = 1\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmax_unavailable\u001B[0m\u001B[0m = 0\n", - " }\n", - " }\n", - "\n", - "\u001B[1m # module.gke.random_shuffle.available_zones\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"random_shuffle\" \"available_zones\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minput\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-a\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-b\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-c\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"us-central1-f\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mresult\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mresult_count\u001B[0m\u001B[0m = 3\n", - " }\n", - "\n", - "\u001B[1m # module.gke.random_string.cluster_service_account_suffix\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"random_string\" \"cluster_service_account_suffix\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlength\u001B[0m\u001B[0m = 4\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlower\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_lower\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_numeric\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_special\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmin_upper\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnumber\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnumeric\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mresult\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mspecial\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mupper\u001B[0m\u001B[0m = false\n", - " }\n", - "\n", - "\u001B[1m # module.gcp-network.module.subnets.google_compute_subnetwork.subnetwork[\"us-central1/gcp-private-subnetwork\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"google_compute_subnetwork\" \"subnetwork\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcreation_timestamp\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mexternal_ipv6_prefix\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mfingerprint\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mgateway_address\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mip_cidr_range\u001B[0m\u001B[0m = \"10.0.0.0/17\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mipv6_cidr_range\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"gcp-private-subnetwork\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnetwork\u001B[0m\u001B[0m = \"gcp-private-network\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mprivate_ip_google_access\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mprivate_ipv6_google_access\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mpurpose\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mregion\u001B[0m\u001B[0m = \"us-central1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0msecondary_ip_range\u001B[0m\u001B[0m = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mip_cidr_range = \"192.168.0.0/18\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrange_name = \"ip-range-pods\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mip_cidr_range = \"192.168.64.0/18\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrange_name = \"ip-range-scv\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mself_link\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mstack_type\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - "\u001B[1m # module.gcp-network.module.vpc.google_compute_network.network\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"google_compute_network\" \"network\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mauto_create_subnetworks\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mdelete_default_routes_on_create\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mgateway_ipv4\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0minternal_ipv6_range\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmtu\u001B[0m\u001B[0m = 0\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"gcp-private-network\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mproject\u001B[0m\u001B[0m = \"qpecs-fltk-2022\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mrouting_mode\u001B[0m\u001B[0m = \"GLOBAL\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mself_link\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - "\u001B[0m\u001B[1mPlan:\u001B[0m 7 to add, 0 to change, 0 to destroy.\n", - "\u001B[0m\u001B[90m\n", - "───────────────────────────────────────────────────────────────────────────────\u001B[0m\n", - "\n", - "Note: You didn't use the -out option to save this plan, so Terraform can't\n", - "guarantee to take exactly these actions if you run \"terraform apply\" now.\n" - ] - } - ], - "source": [ - "terraform plan" - ], + "execution_count": null, "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform plan" + ] }, { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "When the previous command completes successfully, we can start the deployment. Depending on any changes you may have done, this might take a while.\n", "\n", "By default, this will create a private zonal cluster consisting of two node-pools.\n", "\n", "⚠️ Any changes to make the deployment to a regional cluster (even with all nodepools only spanning a single region), an additional free of 0.10 USD/hour will be billed with minute increments." - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "terraform apply -auto-approve" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform apply -auto-approve" + ] }, { "cell_type": "markdown", - "source": [ - "Next, we add cluster credentials (so you can interact with the cluster through `kubectl` an `helm`)." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Next, we add cluster credentials (so you can interact with the cluster through `kubectl` an `helm`)." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "# Add credentials for interacting with cluster via kubectl\n", - "gcloud container clusters get-credentials $CLUSTER_NAME --region $REGION --project $PROJECT_ID" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "# Add credentials for interacting with cluster via kubectl\n", + "gcloud container clusters get-credentials $CLUSTER_NAME --region $REGION --project $PROJECT_ID" + ] }, { "cell_type": "markdown", - "source": [ - "## Installing dependencies\n", - "Lastly, we need to install the dependencies on our cluster. First change the directories, and then run the `init`, `plan` and `apply` commands as we did for creating the GKE cluster." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "## Installing dependencies\n", + "Lastly, we need to install the dependencies on our cluster. First change the directories, and then run the `init`, `plan` and `apply` commands as we did for creating the GKE cluster." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "cd ../terraform-kubeflow" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "cd ../terraform-kubeflow" + ] }, { "cell_type": "markdown", - "source": [ - "Init the directory, to initialize the Terraform module." - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [ + "Init the directory, to initialize the Terraform module." + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "terraform init -reconfigure" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform init -reconfigure" + ] }, { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "Check to see if we can plan the deployment. This will setup the following:\n", "\n", "* Kubeflow training operator (used to deploy and manage PyTorchTrainJobs programmatically)\n", "* NFS-provisioner (used to enable logging on a persistent `ReadWriteMany` PVC in the cluster)\n" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", - "execution_count": 17, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001B[0m\u001B[1mmodule.kubeflow.data.template_file.config_yaml: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.template_file.config_yaml: Read complete after 0s [id=e70434e7cbdc7b7b42ddd875f3c0aa739f8612543152222cc4e6bfae9394b994]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kserve-web-app: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.knative-eventing: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.istio-ingress: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-resources: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.letsencrypt-cluster-resources: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.volumes: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.profiles: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.katib: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.user-namespace: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-namespace: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kserve-web-app: Read complete after 2s [id=4aaa39409dbff6d5a30d26b901e1b3d2ba6450f882df5c63fcbd7104aa14946817cef961b1fc361a5e1cf799786c0f6a51985e4629204a17521642c6793a856e]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.dashboard: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-resources: Read complete after 4s [id=b77d0a996b3896d1c1e65277e23880f542bb981078a1df2caf583eae845ea7a3836c41f42a66e2b7e8b182c0aaeb73dbdc73e9834dcf93dd9401ed4af65ba386]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.dex: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.istio-ingress: Read complete after 7s [id=67a055f95a046699b8fa7d81a29ec7a84de9f2aa50872f610fd765b1c0d68d68fec4ed5dcafc487c665c7af7902c96e8c2888fe50f08b8b8554c8109e271853f]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kserve: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.letsencrypt-cluster-resources: Read complete after 9s [id=286f6cdced0fce9c87af605edbec10af650bb434f010a7568ba662e6f516b9f1ad1f0a32ca392e90a197f89b54df470d71b1a5c3c6c1898482c519ae883c4f47]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks-ui: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.knative-eventing: Read complete after 9s [id=84dc6d11e02e754ce43d598bc71e9e210c8e32cac52fd5cd8727d645b3a571947e296debd4b6cfd7039446fde996f2833ba39ca235a9efaa31995894f064f0b3]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-crds: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.volumes: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.profiles: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.katib: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.user-namespace: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-namespace: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.volumes: Read complete after 11s [id=30ea28758b6890ae48e47be4dcc476a74aba34921871876a5edf9ef3c33592ad19d8140803a6abe1336497fbfd200327d98a8b49b5694b85d5d1af25d73fcf4f]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines-metacontroller: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.dashboard: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.katib: Read complete after 12s [id=6e446bc013cc482d2dd24d1be89ae55c1ce1361e7f2df5ef4037a7c667597aa6a45626a81143e1cff2caa4964239055c74485585453aa2d30daba0eba094c9fe]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.roles: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.dex: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.profiles: Read complete after 14s [id=7ed025fc1428dc0d4fab21eb8a7b013ecc79dba4e53cb17db34e518d6b2436d599f0a6c868e7c59bf1f6cbdc7390f65e49317cf8cc6aa5d1a8fbca4a2eca39b5]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-controller: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kserve: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.user-namespace: Read complete after 17s [id=29802ef54a7a9e9bba9f2b036ca0558bb8aa24a7af86c27b4923eb1de458e934a1a33d27afe25b0865c479cee4fe31ff64721c1f2529aefcac1a7dde9c95df6f]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.training-operator: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks-ui: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-namespace: Read complete after 19s [id=7b7c702e4fdabcf0cbac57685bc580c762e2a02c1087fe66cac905ec7bdc95448270a6352ebfab0a0561702424be70a7c8192cc976c5184ab3dcbfe7d269d5c4]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.pipelines-multi-user-pns: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-crds: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines-metacontroller: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.dashboard: Read complete after 19s [id=414eddfb1a7c95e2d32c05483094c5f523cf37b14d7abce325960c68fa2ec700a4b588dcca397e20e8d84fbd3fd52429546c451c59b2a8ac8db8c0780946ccf5]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.dex: Read complete after 18s [id=8079ae7cb1bc812640c75c0b735ac6fc87d7c269d8975886adb0f68774fba89ca4a37b22b43c5751d043aada9fbb4b1c8a007f72dcf41adc06d6bcf8fda4504b]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.oidc: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.roles: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-controller: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kserve: Read complete after 18s [id=7d62e63209008b9b5b79d73d42792f0f5dab7241691f2472f83bac14a185ba759414d89aea6c9cc9abb045b64a951c26a6b28d9e9f6b473f4aa2fd63b2934b59]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-base: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks-ui: Read complete after 17s [id=584e5b507ed262655753960ba80dafc84630670ac537fe4c6b6de7e7692ad1a8471f1112c93373ce76035d57358deda42de5b2b144d211c7c3a35fdd5d3d1dbf]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-issuer: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.training-operator: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-crds: Read complete after 19s [id=b3dc54b548212c2b4f7608fafc52513917e3431d8aa0a7307ffe5fd209880dda992b9d8aef615c51762c7bb46eb9f80c0d07ee6a63cd785437729f3eb3a68741]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.pipelines-multi-user-pns: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines-metacontroller: Read complete after 19s [id=a7dd2f7649e4ba7505e6fd9ef7a19004e8f12adbe804d4cb3317ff1bb55e74e42ee73d1aa2b66500810a3f9a32c1cb733f8f10bda5f0deb84d2bf8505e3056e1]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.knative-serving: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.roles: Read complete after 20s [id=09e54b2581902286b5470f187077132e2bc8790e7d4ca613a726bcd5bd8879b1640346b6755f8491f4c5960859b5fb34f2332a6055feb6d9a6d54b395e1d8004]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-base: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.oidc: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-controller: Read complete after 20s [id=66b722f0614e1d49b0f62dd09ac1c9eed389696a4704623ffd02bb321a0f63ff0bf04545014b7ec6019fd09a1c96146a19dbc5046f54f620d8db35eb1802ad4f]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.webhook: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-base: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-issuer: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.training-operator: Read complete after 19s [id=e75ac22d5dcecac20dbd126103eaef5d070d6de6b66f327d5c86130bf82c076ee394519a7ce06c60385b6df0aaa89f2d85302928a6689e6754ad8b5eb9825743]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kubeflow-namespace: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.pipelines-multi-user-pns: Read complete after 19s [id=e1d11ed304e5d46a6d766572d495a1d1514f7a78d93ed2a92244250d7d9b03a43922b545d9505596c195e90caf2012b2ae2efa8e6152d627820455124a2d3115]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-ui: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.knative-serving: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.notebooks: Read complete after 19s [id=f7c011faed549fa4d730e631484b6c4d9b8db9db01f6c9e6c1774f0230e40b2a8ce1c8d013da13002a84c47b7186e4f3d3b1f22839268e857ccbc272fbf114bc]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-cluster-local-gateway: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-base: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.oidc: Read complete after 20s [id=88266d35adefd6a950d5805e926031bfb49449c2b24be62d34daf90499fbbcb71e54ee65693813d3452ae624592038e4db12831918e92ea4c0db8008b7f4de68]\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_service_account_access_token.default: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_service_account_access_token.default: Read complete after 0s [id=projects/-/serviceAccounts/terraform-iam-service-account@qpecs-fltk-2022.iam.gserviceaccount.com]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.webhook: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-base: Read complete after 19s [id=b8761febcdcb10adf7c0f3fcb781714713e55774cdf92e8a9c8c376071ceea8acf5ea898ee364e003becc037d8aecd715d6f9c6a097412972bda9e58259dbf97]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-issuer: Read complete after 20s [id=891f4a076e7725399dc859a4a9a2193e637126d5209ef876d7642b290d67edacdc7626d415f7e533f1e92d5bd44b69a7b240263ba8c9f5466bfb21b0d13eb076]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kubeflow-namespace: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_container_cluster.testbed_cluster: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_client_config.default: Reading...\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_client_config.default: Read complete after 0s [id=projects/qpecs-fltk-2022/regions//zones/]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-ui: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mdata.google_container_cluster.testbed_cluster: Read complete after 2s [id=projects/qpecs-fltk-2022/locations/us-central1/clusters/freddie-testbed-cluster]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.knative-serving: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-cluster-local-gateway: Still reading... [10s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-base: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.webhook: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kubeflow-namespace: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-ui: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.knative-serving: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-cluster-local-gateway: Still reading... [20s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-base: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.webhook: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kubeflow-namespace: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_overlay.pipelines: Read complete after 38s [id=49f7958b5ff6606273f35013ebf13c0a4235674126dbcfb4c3431aa63ead695d9206adb7a30cbed3b01a8b3d5ee3f39db834841019d1ef31cd5ca39cad23a32a]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-ui: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.knative-serving: Read complete after 38s [id=5b64eeaab2e9b6a3788baf7f9c4963920bf30fcd17e9ab48164d3970bbd63a48ae4e37a3e38309b1bfb74a6304af60f1994d4c84dbf82e4a5d6b4820b74a3bef]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-cluster-local-gateway: Still reading... [30s elapsed]\u001B[0m\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.cert-manager-base: Read complete after 39s [id=714d23561ca22267af573cc47186ec601ebdc01e1edca194c29a078c3d7a0f5ed937f09e0de86adfc5f2ebf670191b5bae3ea49f8c24c52473becc7e934bf999]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.webhook: Read complete after 38s [id=d188ecdfe1fb9be673c8256917f8a774479f7215a76098ff88d57b61635a00efccef7ac90dd7edc2ba69cdb4a715814b79cfa05ecf7cb63b41fcdb107403bd6f]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.kubeflow-namespace: Read complete after 38s [id=196d43690df7c818f49d94a90c334165379a53ef4e518409c664d426240fd2ba729a2a21d9b67a5339a2f654ac4ec7fa9633dd93a033d806ff081024b036f696]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.tensorboard-ui: Read complete after 38s [id=d8e78b828f4aa90bd0a80b015e8d939beac927c555fddd7400cadf27e27a8301782d3b34b397ee40f59f0731721568b2191c0b2b1d0c7a82ea288e369f1c8c6a]\u001B[0m\n", - "\u001B[0m\u001B[1mmodule.kubeflow.data.kustomization_build.istio-cluster-local-gateway: Read complete after 38s [id=72f81e96d21b7356f77421ba3160c5f33944f2878646d08f2290eb8c59db83b1d462e41497f81e97283cd2d99b86bf042ca76de92c99b616d006f7a99a76cdb2]\u001B[0m\n", - "\n", - "Terraform used the selected providers to generate the following execution plan.\n", - "Resource actions are indicated with the following symbols:\n", - " \u001B[32m+\u001B[0m create\n", - "\u001B[0m\n", - "Terraform will perform the following actions:\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.cert-manager-issuer[\"cert-manager.io/ClusterIssuer/cert-manager/kubeflow-self-signing-issuer\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"cert-manager-issuer\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"cert-manager.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterIssuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-self-signing-issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: cert-manager.io/v1\n", - " kind: ClusterIssuer\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: cert-manager\n", - " app.kubernetes.io/name: cert-manager\n", - " kustomize.component: cert-manager\n", - " name: kubeflow-self-signing-issuer\n", - " namespace: cert-manager\n", - " spec:\n", - " selfSigned: {}\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.kubeflow-namespace[\"_/Namespace/_/kubeflow\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"kubeflow-namespace\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Namespace\n", - " metadata:\n", - " labels:\n", - " control-plane: kubeflow\n", - " istio-injection: enabled\n", - " name: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/kfp-launcher\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kfp-launcher\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " defaultPipelineRoot: \"\"\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kfp-launcher\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/kubeflow-pipelines-profile-controller-code-t85h4bh7bt\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller-code-t85h4bh7bt\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " sync.py: \"# Copyright 2020-2021 The Kubeflow Authors\\n#\\n# Licensed under the Apache\n", - " License, Version 2.0 (the \\\"License\\\");\\n# you may not use this file except in\n", - " compliance with the License.\\n# You may obtain a copy of the License at\\n#\\n#\n", - " \\ http://www.apache.org/licenses/LICENSE-2.0\\n#\\n# Unless required by applicable\n", - " law or agreed to in writing, software\\n# distributed under the License is distributed\n", - " on an \\\"AS IS\\\" BASIS,\\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n", - " express or implied.\\n# See the License for the specific language governing permissions\n", - " and\\n# limitations under the License.\\n\\nfrom http.server import BaseHTTPRequestHandler,\n", - " HTTPServer\\nimport json\\nimport os\\nimport base64\\n\\n\\ndef main():\\n settings\n", - " = get_settings_from_env()\\n server = server_factory(**settings)\\n server.serve_forever()\\n\\n\\ndef\n", - " get_settings_from_env(controller_port=None,\\n visualization_server_image=None,\n", - " frontend_image=None,\\n visualization_server_tag=None,\n", - " frontend_tag=None, disable_istio_sidecar=None,\\n minio_access_key=None,\n", - " minio_secret_key=None, kfp_default_pipeline_root=None):\\n \\\"\\\"\\\"\\n Returns\n", - " a dict of settings from environment variables relevant to the controller\\n\\n Environment\n", - " settings can be overridden by passing them here as arguments.\\n\\n Settings\n", - " are pulled from the all-caps version of the setting name. The\\n following\n", - " defaults are used if those environment variables are not set\\n to enable backwards\n", - " compatibility with previous versions of this script:\\n visualization_server_image:\n", - " gcr.io/ml-pipeline/visualization-server\\n visualization_server_tag: value\n", - " of KFP_VERSION environment variable\\n frontend_image: gcr.io/ml-pipeline/frontend\\n\n", - " \\ frontend_tag: value of KFP_VERSION environment variable\\n disable_istio_sidecar:\n", - " Required (no default)\\n minio_access_key: Required (no default)\\n minio_secret_key:\n", - " Required (no default)\\n \\\"\\\"\\\"\\n settings = dict()\\n settings[\\\"controller_port\\\"]\n", - " = \\\\\\n controller_port or \\\\\\n os.environ.get(\\\"CONTROLLER_PORT\\\",\n", - " \\\"8080\\\")\\n\\n settings[\\\"visualization_server_image\\\"] = \\\\\\n visualization_server_image\n", - " or \\\\\\n os.environ.get(\\\"VISUALIZATION_SERVER_IMAGE\\\", \\\"gcr.io/ml-pipeline/visualization-server\\\")\\n\\n\n", - " \\ settings[\\\"frontend_image\\\"] = \\\\\\n frontend_image or \\\\\\n os.environ.get(\\\"FRONTEND_IMAGE\\\",\n", - " \\\"gcr.io/ml-pipeline/frontend\\\")\\n\\n # Look for specific tags for each image\n", - " first, falling back to\\n # previously used KFP_VERSION environment variable\n", - " for backwards\\n # compatibility\\n settings[\\\"visualization_server_tag\\\"]\n", - " = \\\\\\n visualization_server_tag or \\\\\\n os.environ.get(\\\"VISUALIZATION_SERVER_TAG\\\")\n", - " or \\\\\\n os.environ[\\\"KFP_VERSION\\\"]\\n\\n settings[\\\"frontend_tag\\\"] =\n", - " \\\\\\n frontend_tag or \\\\\\n os.environ.get(\\\"FRONTEND_TAG\\\") or \\\\\\n\n", - " \\ os.environ[\\\"KFP_VERSION\\\"]\\n\\n settings[\\\"disable_istio_sidecar\\\"]\n", - " = \\\\\\n disable_istio_sidecar if disable_istio_sidecar is not None \\\\\\n\n", - " \\ else os.environ.get(\\\"DISABLE_ISTIO_SIDECAR\\\") == \\\"true\\\"\\n\\n settings[\\\"minio_access_key\\\"]\n", - " = \\\\\\n minio_access_key or \\\\\\n base64.b64encode(bytes(os.environ.get(\\\"MINIO_ACCESS_KEY\\\"),\n", - " 'utf-8')).decode('utf-8')\\n\\n settings[\\\"minio_secret_key\\\"] = \\\\\\n minio_secret_key\n", - " or \\\\\\n base64.b64encode(bytes(os.environ.get(\\\"MINIO_SECRET_KEY\\\"), 'utf-8')).decode('utf-8')\\n\\n\n", - " \\ # KFP_DEFAULT_PIPELINE_ROOT is optional\\n settings[\\\"kfp_default_pipeline_root\\\"]\n", - " = \\\\\\n kfp_default_pipeline_root or \\\\\\n os.environ.get(\\\"KFP_DEFAULT_PIPELINE_ROOT\\\")\\n\\n\n", - " \\ return settings\\n\\n\\ndef server_factory(visualization_server_image,\\n visualization_server_tag,\n", - " frontend_image, frontend_tag,\\n disable_istio_sidecar, minio_access_key,\\n\n", - " \\ minio_secret_key, kfp_default_pipeline_root=None, \\n url=\\\"\\\",\n", - " controller_port=8080):\\n \\\"\\\"\\\"\\n Returns an HTTPServer populated with Handler\n", - " with customized settings\\n \\\"\\\"\\\"\\n class Controller(BaseHTTPRequestHandler):\\n\n", - " \\ def sync(self, parent, children):\\n # parent is a namespace\\n\n", - " \\ namespace = parent.get(\\\"metadata\\\", {}).get(\\\"name\\\")\\n\\n pipeline_enabled\n", - " = parent.get(\\\"metadata\\\", {}).get(\\n \\\"labels\\\", {}).get(\\\"pipelines.kubeflow.org/enabled\\\")\\n\\n\n", - " \\ if pipeline_enabled != \\\"true\\\":\\n return {\\\"status\\\":\n", - " {}, \\\"children\\\": []}\\n\\n desired_configmap_count = 1\\n desired_resources\n", - " = []\\n if kfp_default_pipeline_root:\\n desired_configmap_count\n", - " = 2\\n desired_resources += [{\\n \\\"apiVersion\\\":\n", - " \\\"v1\\\",\\n \\\"kind\\\": \\\"ConfigMap\\\",\\n \\\"metadata\\\":\n", - " {\\n \\\"name\\\": \\\"kfp-launcher\\\",\\n \\\"namespace\\\":\n", - " namespace,\\n },\\n \\\"data\\\": {\\n \\\"defaultPipelineRoot\\\":\n", - " kfp_default_pipeline_root,\\n },\\n }]\\n\\n\\n #\n", - " Compute status based on observed state.\\n desired_status = {\\n \\\"kubeflow-pipelines-ready\\\":\\n\n", - " \\ len(children[\\\"Secret.v1\\\"]) == 1 and\\n len(children[\\\"ConfigMap.v1\\\"])\n", - " == desired_configmap_count and\\n len(children[\\\"Deployment.apps/v1\\\"])\n", - " == 2 and\\n len(children[\\\"Service.v1\\\"]) == 2 and\\n len(children[\\\"DestinationRule.networking.istio.io/v1alpha3\\\"])\n", - " == 1 and\\n len(children[\\\"AuthorizationPolicy.security.istio.io/v1beta1\\\"])\n", - " == 1 and\\n \\\"True\\\" or \\\"False\\\"\\n }\\n\\n #\n", - " Generate the desired child object(s).\\n desired_resources += [\\n {\\n\n", - " \\ \\\"apiVersion\\\": \\\"v1\\\",\\n \\\"kind\\\": \\\"ConfigMap\\\",\\n\n", - " \\ \\\"metadata\\\": {\\n \\\"name\\\": \\\"metadata-grpc-configmap\\\",\\n\n", - " \\ \\\"namespace\\\": namespace,\\n },\\n \\\"data\\\":\n", - " {\\n \\\"METADATA_GRPC_SERVICE_HOST\\\":\\n \\\"metadata-grpc-service.kubeflow\\\",\\n\n", - " \\ \\\"METADATA_GRPC_SERVICE_PORT\\\": \\\"8080\\\",\\n },\\n\n", - " \\ },\\n # Visualization server related manifests below\\n\n", - " \\ {\\n \\\"apiVersion\\\": \\\"apps/v1\\\",\\n \\\"kind\\\":\n", - " \\\"Deployment\\\",\\n \\\"metadata\\\": {\\n \\\"labels\\\":\n", - " {\\n \\\"app\\\": \\\"ml-pipeline-visualizationserver\\\"\\n\n", - " \\ },\\n \\\"name\\\": \\\"ml-pipeline-visualizationserver\\\",\\n\n", - " \\ \\\"namespace\\\": namespace,\\n },\\n \\\"spec\\\":\n", - " {\\n \\\"selector\\\": {\\n \\\"matchLabels\\\":\n", - " {\\n \\\"app\\\": \\\"ml-pipeline-visualizationserver\\\"\\n\n", - " \\ },\\n },\\n \\\"template\\\":\n", - " {\\n \\\"metadata\\\": {\\n \\\"labels\\\":\n", - " {\\n \\\"app\\\": \\\"ml-pipeline-visualizationserver\\\"\\n\n", - " \\ },\\n \\\"annotations\\\":\n", - " disable_istio_sidecar and {\\n \\\"sidecar.istio.io/inject\\\":\n", - " \\\"false\\\"\\n } or {},\\n },\\n\n", - " \\ \\\"spec\\\": {\\n \\\"containers\\\":\n", - " [{\\n \\\"image\\\": f\\\"{visualization_server_image}:{visualization_server_tag}\\\",\\n\n", - " \\ \\\"imagePullPolicy\\\":\\n \\\"IfNotPresent\\\",\\n\n", - " \\ \\\"name\\\":\\n \\\"ml-pipeline-visualizationserver\\\",\\n\n", - " \\ \\\"ports\\\": [{\\n \\\"containerPort\\\":\n", - " 8888\\n }],\\n \\\"resources\\\":\n", - " {\\n \\\"requests\\\": {\\n \\\"cpu\\\":\n", - " \\\"50m\\\",\\n \\\"memory\\\": \\\"200Mi\\\"\\n\n", - " \\ },\\n \\\"limits\\\":\n", - " {\\n \\\"cpu\\\": \\\"500m\\\",\\n \\\"memory\\\":\n", - " \\\"1Gi\\\"\\n },\\n }\\n\n", - " \\ }],\\n \\\"serviceAccountName\\\":\\n\n", - " \\ \\\"default-editor\\\",\\n },\\n\n", - " \\ },\\n },\\n },\\n {\\n\n", - " \\ \\\"apiVersion\\\": \\\"networking.istio.io/v1alpha3\\\",\\n \\\"kind\\\":\n", - " \\\"DestinationRule\\\",\\n \\\"metadata\\\": {\\n \\\"name\\\":\n", - " \\\"ml-pipeline-visualizationserver\\\",\\n \\\"namespace\\\": namespace,\\n\n", - " \\ },\\n \\\"spec\\\": {\\n \\\"host\\\":\n", - " \\\"ml-pipeline-visualizationserver\\\",\\n \\\"trafficPolicy\\\":\n", - " {\\n \\\"tls\\\": {\\n \\\"mode\\\":\n", - " \\\"ISTIO_MUTUAL\\\"\\n }\\n }\\n }\\n\n", - " \\ },\\n {\\n \\\"apiVersion\\\": \\\"security.istio.io/v1beta1\\\",\\n\n", - " \\ \\\"kind\\\": \\\"AuthorizationPolicy\\\",\\n \\\"metadata\\\":\n", - " {\\n \\\"name\\\": \\\"ml-pipeline-visualizationserver\\\",\\n \\\"namespace\\\":\n", - " namespace,\\n },\\n \\\"spec\\\": {\\n \\\"selector\\\":\n", - " {\\n \\\"matchLabels\\\": {\\n \\\"app\\\":\n", - " \\\"ml-pipeline-visualizationserver\\\"\\n }\\n },\\n\n", - " \\ \\\"rules\\\": [{\\n \\\"from\\\": [{\\n\n", - " \\ \\\"source\\\": {\\n \\\"principals\\\":\n", - " [\\\"cluster.local/ns/kubeflow/sa/ml-pipeline\\\"]\\n }\\n\n", - " \\ }]\\n }]\\n }\\n\n", - " \\ },\\n {\\n \\\"apiVersion\\\": \\\"v1\\\",\\n\n", - " \\ \\\"kind\\\": \\\"Service\\\",\\n \\\"metadata\\\":\n", - " {\\n \\\"name\\\": \\\"ml-pipeline-visualizationserver\\\",\\n \\\"namespace\\\":\n", - " namespace,\\n },\\n \\\"spec\\\": {\\n \\\"ports\\\":\n", - " [{\\n \\\"name\\\": \\\"http\\\",\\n \\\"port\\\":\n", - " 8888,\\n \\\"protocol\\\": \\\"TCP\\\",\\n \\\"targetPort\\\":\n", - " 8888,\\n }],\\n \\\"selector\\\": {\\n\n", - " \\ \\\"app\\\": \\\"ml-pipeline-visualizationserver\\\",\\n },\\n\n", - " \\ },\\n },\\n # Artifact fetcher\n", - " related resources below.\\n {\\n \\\"apiVersion\\\":\n", - " \\\"apps/v1\\\",\\n \\\"kind\\\": \\\"Deployment\\\",\\n \\\"metadata\\\":\n", - " {\\n \\\"labels\\\": {\\n \\\"app\\\":\n", - " \\\"ml-pipeline-ui-artifact\\\"\\n },\\n \\\"name\\\":\n", - " \\\"ml-pipeline-ui-artifact\\\",\\n \\\"namespace\\\": namespace,\\n\n", - " \\ },\\n \\\"spec\\\": {\\n \\\"selector\\\":\n", - " {\\n \\\"matchLabels\\\": {\\n \\\"app\\\":\n", - " \\\"ml-pipeline-ui-artifact\\\"\\n }\\n },\\n\n", - " \\ \\\"template\\\": {\\n \\\"metadata\\\":\n", - " {\\n \\\"labels\\\": {\\n \\\"app\\\":\n", - " \\\"ml-pipeline-ui-artifact\\\"\\n },\\n \\\"annotations\\\":\n", - " disable_istio_sidecar and {\\n \\\"sidecar.istio.io/inject\\\":\n", - " \\\"false\\\"\\n } or {},\\n },\\n\n", - " \\ \\\"spec\\\": {\\n \\\"containers\\\":\n", - " [{\\n \\\"name\\\":\\n \\\"ml-pipeline-ui-artifact\\\",\\n\n", - " \\ \\\"image\\\": f\\\"{frontend_image}:{frontend_tag}\\\",\\n\n", - " \\ \\\"imagePullPolicy\\\":\\n \\\"IfNotPresent\\\",\\n\n", - " \\ \\\"ports\\\": [{\\n \\\"containerPort\\\":\n", - " 3000\\n }],\\n \\\"env\\\":\n", - " [\\n {\\n \\\"name\\\":\n", - " \\\"MINIO_ACCESS_KEY\\\",\\n \\\"valueFrom\\\":\n", - " {\\n \\\"secretKeyRef\\\": {\\n \\\"key\\\":\n", - " \\\"accesskey\\\",\\n \\\"name\\\":\n", - " \\\"mlpipeline-minio-artifact\\\"\\n }\\n\n", - " \\ }\\n },\\n\n", - " \\ {\\n \\\"name\\\":\n", - " \\\"MINIO_SECRET_KEY\\\",\\n \\\"valueFrom\\\":\n", - " {\\n \\\"secretKeyRef\\\": {\\n \\\"key\\\":\n", - " \\\"secretkey\\\",\\n \\\"name\\\":\n", - " \\\"mlpipeline-minio-artifact\\\"\\n }\\n\n", - " \\ }\\n }\\n\n", - " \\ ],\\n \\\"resources\\\":\n", - " {\\n \\\"requests\\\": {\\n \\\"cpu\\\":\n", - " \\\"10m\\\",\\n \\\"memory\\\": \\\"70Mi\\\"\\n },\\n\n", - " \\ \\\"limits\\\": {\\n \\\"cpu\\\":\n", - " \\\"100m\\\",\\n \\\"memory\\\": \\\"500Mi\\\"\\n\n", - " \\ },\\n }\\n\n", - " \\ }],\\n \\\"serviceAccountName\\\":\\n\n", - " \\ \\\"default-editor\\\"\\n }\\n\n", - " \\ }\\n }\\n },\\n {\\n\n", - " \\ \\\"apiVersion\\\": \\\"v1\\\",\\n \\\"kind\\\": \\\"Service\\\",\\n\n", - " \\ \\\"metadata\\\": {\\n \\\"name\\\": \\\"ml-pipeline-ui-artifact\\\",\\n\n", - " \\ \\\"namespace\\\": namespace,\\n \\\"labels\\\":\n", - " {\\n \\\"app\\\": \\\"ml-pipeline-ui-artifact\\\"\\n }\\n\n", - " \\ },\\n \\\"spec\\\": {\\n \\\"ports\\\":\n", - " [{\\n \\\"name\\\":\\n \\\"http\\\",\n", - " \\ # name is required to let istio understand request protocol\\n \\\"port\\\":\n", - " 80,\\n \\\"protocol\\\": \\\"TCP\\\",\\n \\\"targetPort\\\":\n", - " 3000\\n }],\\n \\\"selector\\\": {\\n \\\"app\\\":\n", - " \\\"ml-pipeline-ui-artifact\\\"\\n }\\n }\\n\n", - " \\ },\\n ]\\n print('Received request:\\\\n', json.dumps(parent,\n", - " indent=2, sort_keys=True))\\n print('Desired resources except secrets:\\\\n',\n", - " json.dumps(desired_resources, indent=2, sort_keys=True))\\n # Moved\n", - " after the print argument because this is sensitive data.\\n desired_resources.append({\\n\n", - " \\ \\\"apiVersion\\\": \\\"v1\\\",\\n \\\"kind\\\": \\\"Secret\\\",\\n\n", - " \\ \\\"metadata\\\": {\\n \\\"name\\\": \\\"mlpipeline-minio-artifact\\\",\\n\n", - " \\ \\\"namespace\\\": namespace,\\n },\\n \\\"data\\\":\n", - " {\\n \\\"accesskey\\\": minio_access_key,\\n \\\"secretkey\\\":\n", - " minio_secret_key,\\n },\\n })\\n\\n return {\\\"status\\\":\n", - " desired_status, \\\"children\\\": desired_resources}\\n\\n def do_POST(self):\\n\n", - " \\ # Serve the sync() function as a JSON webhook.\\n observed\n", - " = json.loads(\\n self.rfile.read(int(self.headers.get(\\\"content-length\\\"))))\\n\n", - " \\ desired = self.sync(observed[\\\"parent\\\"], observed[\\\"children\\\"])\\n\\n\n", - " \\ self.send_response(200)\\n self.send_header(\\\"Content-type\\\",\n", - " \\\"application/json\\\")\\n self.end_headers()\\n self.wfile.write(bytes(json.dumps(desired),\n", - " 'utf-8'))\\n\\n return HTTPServer((url, int(controller_port)), Controller)\\n\\n\\nif\n", - " __name__ == \\\"__main__\\\":\\n main()\\n\"\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller-code-t85h4bh7bt\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/kubeflow-pipelines-profile-controller-env-5252m69c4c\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller-env-5252m69c4c\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " DISABLE_ISTIO_SIDECAR: \"false\"\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller-env-5252m69c4c\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/metadata-grpc-configmap\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-configmap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " METADATA_GRPC_SERVICE_HOST: metadata-grpc-service\n", - " METADATA_GRPC_SERVICE_PORT: \"8080\"\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " name: metadata-grpc-configmap\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/ml-pipeline-ui-configmap\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui-configmap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " viewer-pod-template.json: |-\n", - " {\n", - " \"spec\": {\n", - " \"serviceAccountName\": \"default-editor\"\n", - " }\n", - " }\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui-configmap\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/pipeline-api-server-config-dc9hkg52h6\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"pipeline-api-server-config-dc9hkg52h6\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " DEFAULTPIPELINERUNNERSERVICEACCOUNT: default-editor\n", - " MULTIUSER: \"true\"\n", - " VISUALIZATIONSERVICE_NAME: ml-pipeline-visualizationserver\n", - " VISUALIZATIONSERVICE_PORT: \"8888\"\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: pipeline-api-server-config-dc9hkg52h6\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/pipeline-install-config\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"pipeline-install-config\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " ConMaxLifeTime: 120s\n", - " appName: pipeline\n", - " appVersion: 1.8.1\n", - " autoUpdatePipelineDefaultVersion: \"true\"\n", - " bucketName: mlpipeline\n", - " cacheDb: cachedb\n", - " cacheImage: gcr.io/google-containers/busybox\n", - " cacheNodeRestrictions: \"false\"\n", - " cronScheduleTimezone: UTC\n", - " dbHost: mysql\n", - " dbPort: \"3306\"\n", - " defaultPipelineRoot: \"\"\n", - " mlmdDb: metadb\n", - " pipelineDb: mlpipeline\n", - " warning: |\n", - " 1. Do not use kubectl to edit this configmap, because some values are used\n", - " during kustomize build. Instead, change the configmap and apply the entire\n", - " kustomize manifests again.\n", - " 2. After updating the configmap, some deployments may need to be restarted\n", - " until the changes take effect. A quick way to restart all deployments in a\n", - " namespace: `kubectl rollout restart deployment -n `.\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: pipeline-install-config\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ConfigMap/kubeflow/workflow-controller-configmap\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflow-controller-configmap\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " data:\n", - " artifactRepository: |\n", - " archiveLogs: true\n", - " s3:\n", - " endpoint: \"minio-service.kubeflow:9000\"\n", - " bucket: \"mlpipeline\"\n", - " # keyFormat is a format pattern to define how artifacts will be organized in a bucket.\n", - " # It can reference workflow metadata variables such as workflow.namespace, workflow.name,\n", - " # pod.name. Can also use strftime formating of workflow.creationTimestamp so that workflow\n", - " # artifacts can be organized by date. If omitted, will use `{{workflow.name}}/{{pod.name}}`,\n", - " # which has potential for have collisions, because names do not guarantee they are unique\n", - " # over the lifetime of the cluster.\n", - " # Refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.\n", - " #\n", - " # The following format looks like:\n", - " # artifacts/my-workflow-abc123/2018/08/23/my-workflow-abc123-1234567890\n", - " # Adding date into the path greatly reduces the chance of {{pod.name}} collision.\n", - " keyFormat: \"artifacts/{{workflow.name}}/{{workflow.creationTimestamp.Y}}/{{workflow.creationTimestamp.m}}/{{workflow.creationTimestamp.d}}/{{pod.name}}\"\n", - " # insecure will disable TLS. Primarily used for minio installs not configured with TLS\n", - " insecure: true\n", - " accessKeySecret:\n", - " name: mlpipeline-minio-artifact\n", - " key: accesskey\n", - " secretKeySecret:\n", - " name: mlpipeline-minio-artifact\n", - " key: secretkey\n", - " containerRuntimeExecutor: emissary\n", - " executor: |\n", - " imagePullPolicy: IfNotPresent\n", - " resources:\n", - " requests:\n", - " cpu: 0.01\n", - " memory: 32Mi\n", - " limits:\n", - " cpu: 0.5\n", - " memory: 512Mi\n", - " kind: ConfigMap\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflow-controller-configmap\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/PersistentVolumeClaim/kubeflow/minio-pvc\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"PersistentVolumeClaim\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"minio-pvc\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: PersistentVolumeClaim\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: minio-pvc\n", - " namespace: kubeflow\n", - " spec:\n", - " accessModes:\n", - " - ReadWriteOnce\n", - " resources:\n", - " requests:\n", - " storage: 20Gi\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/PersistentVolumeClaim/kubeflow/mysql-pv-claim\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"PersistentVolumeClaim\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql-pv-claim\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: PersistentVolumeClaim\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql-pv-claim\n", - " namespace: kubeflow\n", - " spec:\n", - " accessModes:\n", - " - ReadWriteOnce\n", - " resources:\n", - " requests:\n", - " storage: 20Gi\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Secret/kubeflow/mlpipeline-minio-artifact\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mlpipeline-minio-artifact\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Secret\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mlpipeline-minio-artifact\n", - " namespace: kubeflow\n", - " stringData:\n", - " accesskey: minio\n", - " secretkey: minio123\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Secret/kubeflow/mysql-secret\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql-secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Secret\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql-secret\n", - " namespace: kubeflow\n", - " stringData:\n", - " password: \"\"\n", - " username: root\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-server\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - port: 443\n", - " targetPort: webhook-api\n", - " selector:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/kubeflow-pipelines-profile-controller\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 80\n", - " protocol: TCP\n", - " targetPort: 8080\n", - " selector:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/metadata-envoy-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-envoy-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: metadata-envoy\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-envoy-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: md-envoy\n", - " port: 9090\n", - " protocol: TCP\n", - " selector:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-envoy\n", - " type: ClusterIP\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/metadata-grpc-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: metadata\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: grpc-api\n", - " port: 8080\n", - " protocol: TCP\n", - " selector:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " type: ClusterIP\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/minio-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"minio-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: minio-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 9000\n", - " protocol: TCP\n", - " targetPort: 9000\n", - " selector:\n", - " app: minio\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " annotations:\n", - " prometheus.io/port: \"8888\"\n", - " prometheus.io/scheme: http\n", - " prometheus.io/scrape: \"true\"\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 8888\n", - " protocol: TCP\n", - " targetPort: 8888\n", - " - name: grpc\n", - " port: 8887\n", - " protocol: TCP\n", - " targetPort: 8887\n", - " selector:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 80\n", - " protocol: TCP\n", - " targetPort: 3000\n", - " selector:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/ml-pipeline-visualizationserver\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-visualizationserver\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-visualizationserver\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 8888\n", - " protocol: TCP\n", - " targetPort: 8888\n", - " selector:\n", - " app: ml-pipeline-visualizationserver\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/mysql\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - port: 3306\n", - " protocol: TCP\n", - " targetPort: 3306\n", - " selector:\n", - " app: mysql\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/Service/kubeflow/workflow-controller-metrics\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflow-controller-metrics\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: workflow-controller\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflow-controller-metrics\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: metrics\n", - " port: 9090\n", - " protocol: TCP\n", - " targetPort: 9090\n", - " selector:\n", - " app: workflow-controller\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/argo\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"argo\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: argo\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-cache\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-cache-deployer-sa\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache-deployer-sa\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache-deployer-sa\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-container-builder\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-container-builder\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-container-builder\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-metadata-writer\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-metadata-writer\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-metadata-writer\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-viewer\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-viewer\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-viewer\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/meta-controller-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"meta-controller-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: meta-controller-service\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/metadata-grpc-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc-server\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline-persistenceagent\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-persistenceagent\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-persistenceagent\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline-scheduledworkflow\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-scheduledworkflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-scheduledworkflow\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline-viewer-crd-service-account\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-viewer-crd-service-account\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-viewer-crd-service-account\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/ml-pipeline-visualizationserver\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-visualizationserver\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-visualizationserver\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/mysql\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"_/ServiceAccount/kubeflow/pipeline-runner\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"pipeline-runner\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: pipeline-runner\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/clusterworkflowtemplates.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"clusterworkflowtemplates.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: clusterworkflowtemplates.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: ClusterWorkflowTemplate\n", - " listKind: ClusterWorkflowTemplateList\n", - " plural: clusterworkflowtemplates\n", - " shortNames:\n", - " - clusterwftmpl\n", - " - cwft\n", - " singular: clusterworkflowtemplate\n", - " scope: Cluster\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/compositecontrollers.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"compositecontrollers.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: compositecontrollers.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: CompositeController\n", - " listKind: CompositeControllerList\n", - " plural: compositecontrollers\n", - " shortNames:\n", - " - cc\n", - " - cctl\n", - " singular: compositecontroller\n", - " scope: Cluster\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " description: 'APIVersion defines the versioned schema of this representation\n", - " of an object. Servers should convert recognized schemas to the latest\n", - " internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n", - " type: string\n", - " kind:\n", - " description: 'Kind is a string value representing the REST resource this\n", - " object represents. Servers may infer this from the endpoint the client\n", - " submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " properties:\n", - " childResources:\n", - " items:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " resource:\n", - " type: string\n", - " updateStrategy:\n", - " properties:\n", - " method:\n", - " type: string\n", - " statusChecks:\n", - " properties:\n", - " conditions:\n", - " items:\n", - " properties:\n", - " reason:\n", - " type: string\n", - " status:\n", - " type: string\n", - " type:\n", - " type: string\n", - " required:\n", - " - type\n", - " type: object\n", - " type: array\n", - " type: object\n", - " type: object\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " type: array\n", - " generateSelector:\n", - " type: boolean\n", - " hooks:\n", - " properties:\n", - " customize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " finalize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\r\n", - " type: object\n", - " type: object\n", - " postUpdateChild:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " preUpdateChild:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " sync:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " type: object\n", - " parentResource:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " resource:\n", - " type: string\n", - " revisionHistory:\n", - " properties:\n", - " fieldPaths:\n", - " items:\n", - " type: string\n", - " type: array\n", - " type: object\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " resyncPeriodSeconds:\n", - " format: int32\n", - " type: integer\n", - " required:\n", - " - parentResource\n", - " type: object\n", - " status:\n", - " type: object\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources:\n", - " status: {}\n", - " status:\n", - " acceptedNames:\n", - " kind: \"\"\n", - " plural: \"\"\n", - " conditions: []\n", - " storedVersions: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/controllerrevisions.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"controllerrevisions.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: controllerrevisions.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: ControllerRevision\n", - " listKind: ControllerRevisionList\n", - " plural: controllerrevisions\n", - " singular: controllerrevision\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " description: 'APIVersion defines the versioned schema of this representation\n", - " of an object. Servers should convert recognized schemas to the latest\n", - " internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n", - " type: string\n", - " children:\n", - " items:\n", - " properties:\n", - " apiGroup:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " names:\n", - " items:\n", - " type: string\n", - " type: array\n", - " required:\n", - " - apiGroup\n", - " - kind\n", - " - names\n", - " type: object\n", - " type: array\n", - " kind:\n", - " description: 'Kind is a string value representing the REST resource this\n", - " object represents. Servers may infer this from the endpoint the client\n", - " submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " parentPatch:\n", - " type: object\n", - " required:\n", - " - metadata\n", - " - parentPatch\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources:\n", - " status: {}\n", - " status:\n", - " acceptedNames:\n", - " kind: \"\"\n", - " plural: \"\"\n", - " conditions: []\n", - " storedVersions: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/cronworkflows.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cronworkflows.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cronworkflows.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: CronWorkflow\n", - " listKind: CronWorkflowList\n", - " plural: cronworkflows\n", - " shortNames:\n", - " - cwf\n", - " - cronwf\n", - " singular: cronworkflow\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/decoratorcontrollers.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"decoratorcontrollers.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: decoratorcontrollers.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: DecoratorController\n", - " listKind: DecoratorControllerList\n", - " plural: decoratorcontrollers\n", - " shortNames:\n", - " - dec\n", - " - decorators\n", - " singular: decoratorcontroller\n", - " scope: Cluster\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " description: 'APIVersion defines the versioned schema of this representation\n", - " of an object. Servers should convert recognized schemas to the latest\n", - " internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n", - " type: string\n", - " kind:\n", - " description: 'Kind is a string value representing the REST resource this\n", - " object represents. Servers may infer this from the endpoint the client\n", - " submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " properties:\n", - " attachments:\n", - " items:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " resource:\n", - " type: string\n", - " updateStrategy:\n", - " properties:\n", - " method:\n", - " type: string\n", - " type: object\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " type: array\n", - " hooks:\n", - " properties:\n", - " customize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " finalize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " sync:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " type: object\n", - " resources:\n", - " items:\n", - " properties:\n", - " annotationSelector:\n", - " properties:\n", - " matchAnnotations:\n", - " additionalProperties:\n", - " type: string\n", - " type: object\n", - " matchExpressions:\n", - " items:\n", - " description: A label selector requirement is a selector\n", - " that contains values, a key, and an operator that relates\n", - " the key and values.\n", - " properties:\n", - " key:\n", - " description: key is the label key that the selector\n", - " applies to.\n", - " type: string\n", - " operator:\n", - " description: operator represents a key's relationship\n", - " to a set of values. Valid operators are In, NotIn,\n", - " Exists and DoesNotExist.\n", - " type: string\n", - " values:\n", - " description: values is an array of string values.\n", - " If the operator is In or NotIn, the values array\n", - " must be non-empty. If the operator is Exists or\n", - " DoesNotExist, the values array must be empty. This\n", - " array is replaced during a strategic merge patch.\n", - " items:\n", - " type: string\n", - " type: array\n", - " required:\n", - " - key\n", - " - operator\n", - " type: object\n", - " type: array\n", - " type: object\n", - " apiVersion:\n", - " type: string\n", - " labelSelector:\n", - " description: A label selector is a label query over a set of\n", - " resources. The result of matchLabels and matchExpressions\n", - " are ANDed. An empty label selector matches all objects. A\n", - " null label selector matches no objects.\n", - " properties:\n", - " matchExpressions:\n", - " description: matchExpressions is a list of label selector\n", - " requirements. The requirements are ANDed.\n", - " items:\n", - " description: A label selector requirement is a selector\n", - " that contains values, a key, and an operator that relates\n", - " the key and values.\n", - " properties:\n", - " key:\n", - " description: key is the label key that the selector\n", - " applies to.\n", - " type: string\n", - " operator:\n", - " description: operator represents a key's relationship\n", - " to a set of values. Valid operators are In, NotIn,\n", - " Exists and DoesNotExist.\n", - " type: string\n", - " values:\n", - " description: values is an array of string values.\n", - " If the operator is In or NotIn, the values array\n", - " must be non-empty. If the operator is Exists or\n", - " DoesNotExist, the values array must be empty. This\n", - " array is replaced during a strategic merge patch.\n", - " items:\n", - " type: string\n", - " type: array\n", - " required:\n", - " - key\n", - " - operator\n", - " type: object\n", - " type: array\n", - " matchLabels:\n", - " additionalProperties:\n", - " type: string\n", - " description: matchLabels is a map of {key,value} pairs.\n", - " A single {key,value} in the matchLabels map is equivalent\n", - " to an element of matchExpressions, whose key field is\n", - " \"key\", the operator is \"In\", and the values array contains\n", - " only \"value\". The requirements are ANDed.\n", - " type: object\n", - " type: object\n", - " resource:\n", - " type: string\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " type: array\n", - " resyncPeriodSeconds:\n", - " format: int32\n", - " type: integer\n", - " required:\n", - " - resources\n", - " type: object\n", - " status:\n", - " type: object\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources:\n", - " status: {}\n", - " status:\n", - " acceptedNames:\n", - " kind: \"\"\n", - " plural: \"\"\n", - " conditions: []\n", - " storedVersions: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/scheduledworkflows.kubeflow.org\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"scheduledworkflows.kubeflow.org\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: scheduledworkflows.kubeflow.org\n", - " spec:\n", - " group: kubeflow.org\n", - " names:\n", - " kind: ScheduledWorkflow\n", - " listKind: ScheduledWorkflowList\n", - " plural: scheduledworkflows\n", - " shortNames:\n", - " - swf\n", - " singular: scheduledworkflow\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1beta1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - spec\n", - " - status\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/viewers.kubeflow.org\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"viewers.kubeflow.org\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: viewers.kubeflow.org\n", - " spec:\n", - " group: kubeflow.org\n", - " names:\n", - " kind: Viewer\n", - " listKind: ViewerList\n", - " plural: viewers\n", - " shortNames:\n", - " - vi\n", - " singular: viewer\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1beta1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/workfloweventbindings.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workfloweventbindings.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workfloweventbindings.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowEventBinding\n", - " listKind: WorkflowEventBindingList\n", - " plural: workfloweventbindings\n", - " shortNames:\n", - " - wfeb\n", - " singular: workfloweventbinding\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflows.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflows.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflows.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: Workflow\n", - " listKind: WorkflowList\n", - " plural: workflows\n", - " shortNames:\n", - " - wf\n", - " singular: workflow\n", - " scope: Namespaced\n", - " versions:\n", - " - additionalPrinterColumns:\n", - " - description: Status of the workflow\n", - " jsonPath: .status.phase\n", - " name: Status\n", - " type: string\n", - " - description: When the workflow was started\n", - " format: date-time\n", - " jsonPath: .status.startedAt\n", - " name: Age\n", - " type: date\n", - " name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources: {}\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflowtasksets.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflowtasksets.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflowtasksets.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowTaskSet\n", - " listKind: WorkflowTaskSetList\n", - " plural: workflowtasksets\n", - " shortNames:\n", - " - wfts\n", - " singular: workflowtaskset\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflowtemplates.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflowtemplates.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflowtemplates.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowTemplate\n", - " listKind: WorkflowTemplateList\n", - " plural: workflowtemplates\n", - " shortNames:\n", - " - wftmpl\n", - " singular: workflowtemplate\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/cache-deployer-deployment\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-deployer-deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-deployer-deployment\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " strategy:\n", - " type: Recreate\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE_TO_WATCH\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " image: gcr.io/ml-pipeline/cache-deployer:1.8.1\n", - " imagePullPolicy: Always\n", - " name: main\n", - " restartPolicy: Always\n", - " serviceAccountName: kubeflow-pipelines-cache-deployer-sa\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-server\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\r\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - args:\n", - " - --db_driver=$(DBCONFIG_DRIVER)\n", - " - --db_host=$(DBCONFIG_HOST_NAME)\n", - " - --db_port=$(DBCONFIG_PORT)\n", - " - --db_name=$(DBCONFIG_DB_NAME)\n", - " - --db_user=$(DBCONFIG_USER)\n", - " - --db_password=$(DBCONFIG_PASSWORD)\n", - " - --namespace_to_watch=$(NAMESPACE_TO_WATCH)\n", - " env:\n", - " - name: NAMESPACE_TO_WATCH\n", - " value: \"\"\n", - " - name: CACHE_IMAGE\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheImage\n", - " name: pipeline-install-config\n", - " - name: CACHE_NODE_RESTRICTIONS\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheNodeRestrictions\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_DRIVER\n", - " value: mysql\n", - " - name: DBCONFIG_DB_NAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheDb\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_HOST_NAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbHost\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_PORT\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbPort\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_USER\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: username\n", - " name: mysql-secret\n", - " - name: DBCONFIG_PASSWORD\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: password\n", - " name: mysql-secret\n", - " image: gcr.io/ml-pipeline/cache-server:1.8.1\n", - " imagePullPolicy: Always\n", - " name: server\n", - " ports:\n", - " - containerPort: 8443\n", - " name: webhook-api\n", - " volumeMounts:\n", - " - mountPath: /etc/webhook/certs\n", - " name: webhook-tls-certs\n", - " readOnly: true\n", - " serviceAccountName: kubeflow-pipelines-cache\n", - " volumes:\n", - " - name: webhook-tls-certs\n", - " secret:\n", - " secretName: webhook-server-tls\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/kubeflow-pipelines-profile-controller\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " sidecar.istio.io/inject: \"false\"\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - command:\n", - " - python\n", - " - /hooks/sync.py\n", - " env:\n", - " - name: KFP_VERSION\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: appVersion\n", - " name: pipeline-install-config\n", - " - name: KFP_DEFAULT_PIPELINE_ROOT\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: defaultPipelineRoot\n", - " name: pipeline-install-config\n", - " optional: true\n", - " - name: MINIO_ACCESS_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: accesskey\n", - " name: mlpipeline-minio-artifact\n", - " - name: MINIO_SECRET_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: secretkey\n", - " name: mlpipeline-minio-artifact\n", - " envFrom:\n", - " - configMapRef:\n", - " name: kubeflow-pipelines-profile-controller-env-5252m69c4c\n", - " image: python:3.7\n", - " name: profile-controller\n", - " ports:\n", - " - containerPort: 8080\n", - " volumeMounts:\n", - " - mountPath: /hooks\n", - " name: hooks\n", - " volumes:\n", - " - configMap:\n", - " name: kubeflow-pipelines-profile-controller-code-t85h4bh7bt\n", - " name: hooks\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/metadata-envoy-deployment\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-envoy-deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-envoy\n", - " name: metadata-envoy-deployment\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-envoy\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " sidecar.istio.io/inject: \"false\"\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-envoy\n", - " spec:\n", - " containers:\n", - " - image: gcr.io/ml-pipeline/metadata-envoy:1.8.1\n", - " name: container\n", - " ports:\n", - " - containerPort: 9090\n", - " name: md-envoy\n", - " - containerPort: 9901\n", - " name: envoy-admin\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/metadata-grpc-deployment\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " name: metadata-grpc-deployment\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " template:\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " spec:\n", - " containers:\n", - " - args:\n", - " - --grpc_port=8080\n", - " - --mysql_config_database=$(MYSQL_DATABASE)\n", - " - --mysql_config_host=$(MYSQL_HOST)\n", - " - --mysql_config_port=$(MYSQL_PORT)\n", - " - --mysql_config_user=$(DBCONFIG_USER)\n", - " - --mysql_config_password=$(DBCONFIG_PASSWORD)\n", - " - --enable_database_upgrade=true\n", - " command:\n", - " - /bin/metadata_store_server\n", - " env:\n", - " - name: DBCONFIG_USER\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: username\n", - " name: mysql-secret\n", - " - name: DBCONFIG_PASSWORD\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: password\n", - " name: mysql-secret\n", - " - name: MYSQL_DATABASE\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: mlmdDb\n", - " name: pipeline-install-config\n", - " - name: MYSQL_HOST\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbHost\n", - " name: pipeline-install-config\n", - " - name: MYSQL_PORT\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbPort\n", - " name: pipeline-install-config\n", - " image: gcr.io/tfx-oss-public/ml_metadata_store_server:1.5.0\n", - " livenessProbe:\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " tcpSocket:\n", - " port: grpc-api\n", - " timeoutSeconds: 2\n", - " name: container\n", - " ports:\n", - " - containerPort: 8080\n", - " name: grpc-api\n", - " readinessProbe:\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " tcpSocket:\n", - " port: grpc-api\n", - " timeoutSeconds: 2\n", - " serviceAccountName: metadata-grpc-server\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/metadata-writer\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-writer\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: metadata-writer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-writer\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: metadata-writer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: metadata-writer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE_TO_WATCH\n", - " value: \"\"\n", - " image: gcr.io/ml-pipeline/metadata-writer:1.8.1\n", - " name: main\n", - " serviceAccountName: kubeflow-pipelines-metadata-writer\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/minio\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"minio\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: minio\n", - " application-crd-id: kubeflow-pipelines\n", - " name: minio\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: minio\n", - " application-crd-id: kubeflow-pipelines\n", - " strategy:\n", - " type: Recreate\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: minio\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - args:\n", - " - server\n", - " - /data\n", - " env:\n", - " - name: MINIO_ACCESS_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: accesskey\n", - " name: mlpipeline-minio-artifact\n", - " - name: MINIO_SECRET_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: secretkey\n", - " name: mlpipeline-minio-artifact\n", - " image: gcr.io/ml-pipeline/minio:RELEASE.2019-08-14T20-37-41Z-license-compliance\n", - " name: minio\n", - " ports:\n", - " - containerPort: 9000\n", - " resources:\n", - " requests:\n", - " cpu: 20m\n", - " memory: 100Mi\n", - " volumeMounts:\n", - " - mountPath: /data\n", - " name: data\n", - " subPath: minio\n", - " volumes:\n", - " - name: data\n", - " persistentVolumeClaim:\n", - " claimName: minio-pvc\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " cluster-autoscaler.kubernetes.io/safe-to-evict: \"true\"\n", - " labels:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: KUBEFLOW_USERID_HEADER\n", - " value: kubeflow-userid\n", - " - name: KUBEFLOW_USERID_PREFIX\n", - " value: \"\"\n", - " - name: AUTO_UPDATE_PIPELINE_DEFAULT_VERSION\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: autoUpdatePipelineDefaultVersion\n", - " name: pipeline-install-config\n", - " - name: POD_NAMESPACE\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " - name: OBJECTSTORECONFIG_SECURE\n", - " value: \"false\"\n", - " - name: OBJECTSTORECONFIG_BUCKETNAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: bucketName\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_USER\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: username\n", - " name: mysql-secret\n", - " - name: DBCONFIG_PASSWORD\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: password\n", - " name: mysql-secret\n", - " - name: DBCONFIG_DBNAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: pipelineDb\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_HOST\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbHost\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_PORT\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbPort\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_CONMAXLIFETIME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: ConMaxLifeTime\n", - " name: pipeline-install-config\n", - " - name: OBJECTSTORECONFIG_ACCESSKEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: accesskey\n", - " name: mlpipeline-minio-artifact\n", - " - name: OBJECTSTORECONFIG_SECRETACCESSKEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: secretkey\n", - " name: mlpipeline-minio-artifact\n", - " envFrom:\n", - " - configMapRef:\n", - " name: pipeline-api-server-config-dc9hkg52h6\n", - " image: gcr.io/ml-pipeline/api-server:1.8.1\n", - " imagePullPolicy: IfNotPresent\n", - " livenessProbe:\n", - " exec:\n", - " command:\n", - " - wget\n", - " - -q\n", - " - -S\n", - " - -O\n", - " - '-'\n", - " - http://localhost:8888/apis/v1beta1/healthz\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " timeoutSeconds: 2\n", - " name: ml-pipeline-api-server\n", - " ports:\n", - " - containerPort: 8888\n", - " name: http\n", - " - containerPort: 8887\n", - " name: grpc\n", - " readinessProbe:\n", - " exec:\n", - " command:\n", - " - wget\n", - " - -q\n", - " - -S\n", - " - -O\n", - " - '-'\n", - " - http://localhost:8888/apis/v1beta1/healthz\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " timeoutSeconds: 2\n", - " resources:\n", - " requests:\n", - " cpu: 250m\n", - " memory: 500Mi\n", - " serviceAccountName: ml-pipeline\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/ml-pipeline-persistenceagent\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-persistenceagent\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-persistenceagent\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-persistenceagent\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-persistenceagent\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " cluster-autoscaler.kubernetes.io/safe-to-evict: \"true\"\n", - " labels:\n", - " app: ml-pipeline-persistenceagent\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE\n", - " value: \"\"\n", - " - name: TTL_SECONDS_AFTER_WORKFLOW_FINISH\n", - " value: \"86400\"\n", - " - name: NUM_WORKERS\n", - " value: \"2\"\n", - " image: gcr.io/ml-pipeline/persistenceagent:1.8.1\n", - " imagePullPolicy: IfNotPresent\n", - " name: ml-pipeline-persistenceagent\n", - " resources:\n", - " requests:\n", - " cpu: 120m\n", - " memory: 500Mi\n", - " serviceAccountName: ml-pipeline-persistenceagent\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/ml-pipeline-scheduledworkflow\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-scheduledworkflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-scheduledworkflow\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-scheduledworkflow\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-scheduledworkflow\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " cluster-autoscaler.kubernetes.io/safe-to-evict: \"true\"\n", - " labels:\n", - " app: ml-pipeline-scheduledworkflow\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE\n", - " value: \"\"\n", - " - name: CRON_SCHEDULE_TIMEZONE\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cronScheduleTimezone\n", - " name: pipeline-install-config\n", - " image: gcr.io/ml-pipeline/scheduledworkflow:1.8.1\n", - " imagePullPolicy: IfNotPresent\n", - " name: ml-pipeline-scheduledworkflow\n", - " serviceAccountName: ml-pipeline-scheduledworkflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " cluster-autoscaler.kubernetes.io/safe-to-evict: \"true\"\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: VIEWER_TENSORBOARD_POD_TEMPLATE_SPEC_PATH\n", - " value: /etc/config/viewer-pod-template.json\n", - " - name: DEPLOYMENT\n", - " value: KUBEFLOW\n", - " - name: ARTIFACTS_SERVICE_PROXY_NAME\n", - " value: ml-pipeline-ui-artifact\n", - " - name: ARTIFACTS_SERVICE_PROXY_PORT\n", - " value: \"80\"\n", - " - name: ARTIFACTS_SERVICE_PROXY_ENABLED\n", - " value: \"true\"\n", - " - name: ENABLE_AUTHZ\n", - " value: \"true\"\n", - " - name: KUBEFLOW_USERID_HEADER\n", - " value: kubeflow-userid\n", - " - name: KUBEFLOW_USERID_PREFIX\n", - " value: \"\"\n", - " - name: MINIO_NAMESPACE\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " - name: MINIO_ACCESS_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: accesskey\n", - " name: mlpipeline-minio-artifact\n", - " - name: MINIO_SECRET_KEY\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: secretkey\n", - " name: mlpipeline-minio-artifact\n", - " - name: ALLOW_CUSTOM_VISUALIZATIONS\n", - " value: \"true\"\n", - " image: gcr.io/ml-pipeline/frontend:1.8.1\n", - " imagePullPolicy: IfNotPresent\n", - " livenessProbe:\n", - " exec:\n", - " command:\n", - " - wget\n", - " - -q\n", - " - -S\n", - " - -O\n", - " - '-'\n", - " - http://localhost:3000/apis/v1beta1/healthz\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " timeoutSeconds: 2\n", - " name: ml-pipeline-ui\n", - " ports:\n", - " - containerPort: 3000\n", - " readinessProbe:\n", - " exec:\n", - " command:\n", - " - wget\n", - " - -q\n", - " - -S\n", - " - -O\n", - " - '-'\n", - " - http://localhost:3000/apis/v1beta1/healthz\n", - " initialDelaySeconds: 3\n", - " periodSeconds: 5\n", - " timeoutSeconds: 2\n", - " resources:\n", - " requests:\n", - " cpu: 10m\n", - " memory: 70Mi\n", - " volumeMounts:\n", - " - mountPath: /etc/config\n", - " name: config-volume\n", - " readOnly: true\n", - " serviceAccountName: ml-pipeline-ui\n", - " volumes:\n", - " - configMap:\n", - " name: ml-pipeline-ui-configmap\n", - " name: config-volume\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"apps/Deployment/kubeflow/ml-pipeline-viewer-crd\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-viewer-crd\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-viewer-crd\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-viewer-crd\n", - " namespace: kubeflow\n", - " spec:\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-viewer-crd\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " annotations:\n", - " cluster-autoscaler.kubernetes.io/safe-to-evict: \"true\"\n", - " labels:\n", - " app: ml-pipeline-viewer-crd\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE\n", - " value: \"\"\n", - " - name: MAX_NUM_VIEWERS\n", - " value: \"50\"\n", - " - name: MINIO_NAMESPACE\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " rbac.authorization.kubeflow.org/aggregate-to-kubeflow-pipelines-edit: \"true\"\n", - " rbac.authorization.kubeflow.org/aggregate-to-kubeflow-view: \"true\"\n", - " name: kubeflow-pipelines-view\n", - " rules: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRole/_/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " rules:\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - pods\n", - " - pods/log\n", - " verbs:\n", - " - get\n", - " - list\n", - " - delete\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - authorization.k8s.io\n", - " resources:\n", - " - subjectaccessreviews\n", - " verbs:\n", - " - create\n", - " - apiGroups:\n", - " - authentication.k8s.io\n", - " resources:\n", - " - tokenreviews\n", - " verbs:\n", - " - create\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRole/_/ml-pipeline-persistenceagent-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-persistenceagent-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-persistenceagent-role\n", - " rules:\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " - watch\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " - watch\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRole/_/ml-pipeline-scheduledworkflow-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-scheduledworkflow-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-scheduledworkflow-role\n", - " rules:\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " - scheduledworkflows/finalizers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - events\n", - " verbs:\n", - " - create\n", - " - patch\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRole/_/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " rules:\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - pods\n", - " - pods/log\n", - " verbs:\n", - " - get\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - events\n", - " verbs:\n", - " - list\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - secrets\n", - " verbs:\n", - " - get\n", - " - list\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - viewers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - delete\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRole/_/ml-pipeline-viewer-controller-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-viewer-controller-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-viewer-controller-role\n", - " rules:\n", - " - apiGroups:\n", - " - '*'\n", - " resources:\n", - " - deployments\n", - " - services\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - viewers\n", - " - viewers/finalizers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/argo-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"argo-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRoleBinding\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: argo-binding\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: ClusterRole\n", - " name: argo-cluster-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: argo\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/kubeflow-pipelines-cache-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRoleBinding\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache-binding\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: ClusterRole\n", - " name: kubeflow-pipelines-cache-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-cache\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/kubeflow-pipelines-cache-deployer-clusterrolebinding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache-deployer-clusterrolebinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache-deployer-clusterrolebinding\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: ClusterRole\n", - " name: kubeflow-pipelines-cache-deployer-clusterrole\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-cache-deployer-sa\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/kubeflow-pipelines-metadata-writer-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-metadata-writer-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-metadata-writer-binding\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: ClusterRole\n", - " name: kubeflow-pipelines-metadata-writer-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-metadata-writer\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/meta-controller-cluster-role-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"meta-controller-cluster-role-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-ui\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-persistenceagent\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-scheduledworkflow\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-viewer-crd-service-account\n", - " - cluster.local/ns/kubeflow/sa/kubeflow-pipelines-cache\n", - " - cluster.local/ns/kubeflow/sa/metadata-grpc-server\n", - " selector:\n", - " matchLabels:\n", - " app: mysql\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines[\"security.istio.io/AuthorizationPolicy/kubeflow/service-cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"service-cache-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: service-cache-server\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - {}\n", - " selector:\n", - " matchLabels:\n", - " app: cache-server\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-metacontroller[\"_/ServiceAccount/kubeflow/meta-controller-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-metacontroller\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"meta-controller-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: meta-controller-service\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-metacontroller[\"apiextensions.k8s.io/CustomResourceDefinition/_/compositecontrollers.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-metacontroller\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"compositecontrollers.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: compositecontrollers.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: CompositeController\n", - " listKind: CompositeControllerList\n", - " plural: compositecontrollers\n", - " shortNames:\n", - " - cc\n", - " - cctl\n", - " singular: compositecontroller\n", - " scope: Cluster\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " description: 'APIVersion defines the versioned schema of this representation\n", - " of an object. Servers should convert recognized schemas to the latest\n", - " internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n", - " type: string\n", - " kind:\n", - " description: 'Kind is a string value representing the REST resource this\n", - " object represents. Servers may infer this from the endpoint the client\n", - " submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " properties:\n", - " childResources:\n", - " items:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " resource:\n", - " type: string\n", - " updateStrategy:\n", - " properties:\n", - " method:\n", - " type: string\n", - " statusChecks:\n", - " properties:\n", - " conditions:\n", - " items:\n", - " properties:\n", - " reason:\n", - " type: string\n", - " status:\n", - " type: string\n", - " type:\n", - " type: string\n", - " required:\n", - " - type\n", - " type: object\n", - " type: array\n", - " type: object\n", - " type: object\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " type: array\n", - " generateSelector:\n", - " type: boolean\n", - " hooks:\n", - " properties:\n", - " customize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\r\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " finalize:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " postUpdateChild:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " preUpdateChild:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " sync:\n", - " properties:\n", - " webhook:\n", - " properties:\n", - " path:\n", - " type: string\n", - " service:\n", - " properties:\n", - " name:\n", - " type: string\n", - " namespace:\n", - " type: string\n", - " port:\n", - " format: int32\n", - " type: integer\n", - " protocol:\n", - " type: string\n", - " required:\n", - " - name\n", - " - namespace\n", - " type: object\n", - " timeout:\n", - " type: string\n", - " url:\n", - " type: string\n", - " type: object\n", - " type: object\n", - " type: object\n", - " parentResource:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " resource:\n", - " type: string\n", - " revisionHistory:\n", - " properties:\n", - " fieldPaths:\n", - " items:\n", - " type: string\n", - " type: array\n", - " type: object\n", - " required:\n", - " - apiVersion\n", - " - resource\n", - " type: object\n", - " resyncPeriodSeconds:\n", - " format: int32\n", - " type: integer\n", - " required:\n", - " - parentResource\n", - " type: object\n", - " status:\n", - " type: object\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources:\n", - " status: {}\n", - " status:\n", - " acceptedNames:\n", - " kind: \"\"\n", - " plural: \"\"\n", - " conditions: []\n", - " storedVersions: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-metacontroller[\"apiextensions.k8s.io/CustomResourceDefinition/_/controllerrevisions.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-metacontroller\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"controllerrevisions.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: controllerrevisions.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: ControllerRevision\n", - " listKind: ControllerRevisionList\n", - " plural: controllerrevisions\n", - " singular: controllerrevision\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " description: 'APIVersion defines the versioned schema of this representation\n", - " of an object. Servers should convert recognized schemas to the latest\n", - " internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n", - " type: string\n", - " children:\n", - " items:\n", - " properties:\n", - " apiGroup:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " names:\n", - " items:\n", - " type: string\n", - " type: array\n", - " required:\n", - " - apiGroup\n", - " - kind\n", - " - names\n", - " type: object\n", - " type: array\n", - " kind:\n", - " description: 'Kind is a string value representing the REST resource this\n", - " object represents. Servers may infer this from the endpoint the client\n", - " submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " parentPatch:\n", - " type: object\n", - " required:\n", - " - metadata\n", - " - parentPatch\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources:\n", - " status: {}\n", - " status:\n", - " acceptedNames:\n", - " kind: \"\"\n", - " plural: \"\"\n", - " conditions: []\n", - " storedVersions: []\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-metacontroller[\"apiextensions.k8s.io/CustomResourceDefinition/_/decoratorcontrollers.metacontroller.k8s.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-metacontroller\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"decoratorcontrollers.metacontroller.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " annotations:\n", - " api-approved.kubernetes.io: unapproved, request not yet submitted\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " kustomize.component: metacontroller\n", - " name: decoratorcontrollers.metacontroller.k8s.io\n", - " spec:\n", - " group: metacontroller.k8s.io\n", - " names:\n", - " kind: DecoratorController\n", - " listKind: DecoratorControllerList\n", - " plural: decoratorcontrollers\n", - " shortNames:\n", - " - dec\n", - " - decorators\n", - " singular: decoratorcontroller\n", - " scope: Cluster\n", - " versions:\n", - " - name: v1alpha1\n", - " namespace: kubeflow\n", - " stringData:\n", - " password: \"\"\n", - " username: root\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-server\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - port: 443\n", - " targetPort: webhook-api\n", - " selector:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/kubeflow-pipelines-profile-controller\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 80\n", - " protocol: TCP\n", - " targetPort: 8080\n", - " selector:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/metadata-envoy-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-envoy-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: metadata-envoy\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-envoy-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: md-envoy\n", - " port: 9090\n", - " protocol: TCP\n", - " selector:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-envoy\n", - " type: ClusterIP\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/metadata-grpc-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: metadata\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: grpc-api\n", - " port: 8080\n", - " protocol: TCP\n", - " selector:\n", - " application-crd-id: kubeflow-pipelines\n", - " component: metadata-grpc-server\n", - " type: ClusterIP\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/minio-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"minio-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: minio-service\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 9000\n", - " protocol: TCP\n", - " targetPort: 9000\n", - " selector:\n", - " app: minio\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " annotations:\n", - " prometheus.io/port: \"8888\"\n", - " prometheus.io/scheme: http\n", - " prometheus.io/scrape: \"true\"\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 8888\n", - " protocol: TCP\n", - " targetPort: 8888\n", - " - name: grpc\n", - " port: 8887\n", - " protocol: TCP\n", - " targetPort: 8887\n", - " selector:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 80\n", - " protocol: TCP\n", - " targetPort: 3000\n", - " selector:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/ml-pipeline-visualizationserver\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-visualizationserver\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-visualizationserver\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: http\n", - " port: 8888\n", - " protocol: TCP\n", - " targetPort: 8888\n", - " selector:\n", - " app: ml-pipeline-visualizationserver\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/mysql\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - port: 3306\n", - " protocol: TCP\n", - " targetPort: 3306\n", - " selector:\n", - " app: mysql\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/Service/kubeflow/workflow-controller-metrics\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflow-controller-metrics\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: Service\n", - " metadata:\n", - " labels:\n", - " app: workflow-controller\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflow-controller-metrics\n", - " namespace: kubeflow\n", - " spec:\n", - " ports:\n", - " - name: metrics\n", - " port: 9090\n", - " protocol: TCP\n", - " targetPort: 9090\n", - " selector:\n", - " app: workflow-controller\n", - " application-crd-id: kubeflow-pipelines\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/ServiceAccount/kubeflow/argo\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"argo\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: argo\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-cache\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: v1\n", - " kind: ServiceAccount\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"_/ServiceAccount/kubeflow/kubeflow-pipelines-cache-deployer-sa\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ServiceAccount\"\n", - " names:\n", - " kind: Viewer\n", - " listKind: ViewerList\n", - " plural: viewers\n", - " shortNames:\n", - " - vi\n", - " singular: viewer\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1beta1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apiextensions.k8s.io/CustomResourceDefinition/_/workfloweventbindings.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workfloweventbindings.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workfloweventbindings.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowEventBinding\n", - " listKind: WorkflowEventBindingList\n", - " plural: workfloweventbindings\n", - " shortNames:\n", - " - wfeb\n", - " singular: workfloweventbinding\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflows.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflows.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflows.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: Workflow\n", - " listKind: WorkflowList\n", - " plural: workflows\n", - " shortNames:\n", - " - wf\n", - " singular: workflow\n", - " scope: Namespaced\n", - " versions:\n", - " - additionalPrinterColumns:\n", - " - description: Status of the workflow\n", - " jsonPath: .status.phase\n", - " name: Status\n", - " type: string\n", - " - description: When the workflow was started\n", - " format: date-time\n", - " jsonPath: .status.startedAt\n", - " name: Age\n", - " type: date\n", - " name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " subresources: {}\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflowtasksets.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflowtasksets.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflowtasksets.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowTaskSet\n", - " listKind: WorkflowTaskSetList\n", - " plural: workflowtasksets\n", - " shortNames:\n", - " - wfts\n", - " singular: workflowtaskset\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " status:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apiextensions.k8s.io/CustomResourceDefinition/_/workflowtemplates.argoproj.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"workflowtemplates.argoproj.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apiextensions.k8s.io/v1\n", - " kind: CustomResourceDefinition\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: workflowtemplates.argoproj.io\n", - " spec:\n", - " group: argoproj.io\n", - " names:\n", - " kind: WorkflowTemplate\n", - " listKind: WorkflowTemplateList\n", - " plural: workflowtemplates\n", - " shortNames:\n", - " - wftmpl\n", - " singular: workflowtemplate\n", - " scope: Namespaced\n", - " versions:\n", - " - name: v1alpha1\n", - " schema:\n", - " openAPIV3Schema:\n", - " properties:\n", - " apiVersion:\n", - " type: string\n", - " kind:\n", - " type: string\n", - " metadata:\n", - " type: object\n", - " spec:\n", - " type: object\n", - " x-kubernetes-map-type: atomic\n", - " x-kubernetes-preserve-unknown-fields: true\n", - " required:\n", - " - metadata\n", - " - spec\n", - " type: object\n", - " served: true\n", - " storage: true\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apps/Deployment/kubeflow/cache-deployer-deployment\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-deployer-deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-deployer-deployment\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " strategy:\n", - " type: Recreate\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - env:\n", - " - name: NAMESPACE_TO_WATCH\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " image: gcr.io/ml-pipeline/cache-deployer:1.8.1\n", - " imagePullPolicy: Always\n", - " name: main\n", - " restartPolicy: Always\n", - " serviceAccountName: kubeflow-pipelines-cache-deployer-sa\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apps/Deployment/kubeflow/cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"cache-server\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: cache-server\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " template:\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " spec:\n", - " containers:\n", - " - args:\n", - " - --db_driver=$(DBCONFIG_DRIVER)\n", - " - --db_host=$(DBCONFIG_HOST_NAME)\n", - " - --db_port=$(DBCONFIG_PORT)\n", - " - --db_name=$(DBCONFIG_DB_NAME)\n", - " - --db_user=$(DBCONFIG_USER)\n", - " - --db_password=$(DBCONFIG_PASSWORD)\n", - " - --namespace_to_watch=$(NAMESPACE_TO_WATCH)\n", - " env:\n", - " - name: NAMESPACE_TO_WATCH\n", - " value: \"\"\n", - " - name: CACHE_IMAGE\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheImage\n", - " name: pipeline-install-config\n", - " - name: CACHE_NODE_RESTRICTIONS\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheNodeRestrictions\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_DRIVER\n", - " value: mysql\n", - " - name: DBCONFIG_DB_NAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: cacheDb\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_HOST_NAME\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbHost\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_PORT\n", - " valueFrom:\n", - " configMapKeyRef:\n", - " key: dbPort\n", - " name: pipeline-install-config\n", - " - name: DBCONFIG_USER\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: username\n", - " name: mysql-secret\n", - " - name: DBCONFIG_PASSWORD\n", - " valueFrom:\n", - " secretKeyRef:\n", - " key: password\n", - " name: mysql-secret\n", - " image: gcr.io/ml-pipeline/cache-server:1.8.1\n", - " imagePullPolicy: Always\n", - " name: server\n", - " ports:\n", - " - containerPort: 8443\n", - " name: webhook-api\n", - " volumeMounts:\n", - " - mountPath: /etc/webhook/certs\n", - " name: webhook-tls-certs\n", - " readOnly: true\n", - " serviceAccountName: kubeflow-pipelines-cache\n", - " volumes:\n", - " - name: webhook-tls-certs\n", - " secret:\n", - " secretName: webhook-server-tls\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"apps/Deployment/kubeflow/kubeflow-pipelines-profile-controller\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-profile-controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: apps/v1\n", - " kind: Deployment\n", - " metadata:\n", - " labels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-profile-controller\n", - " namespace: kubeflow\n", - " spec:\n", - " replicas: 1\n", - " selector:\n", - " matchLabels:\n", - " app: kubeflow-pipelines-profile-controller\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc-service\n", - " namespace: kubeflow\n", - " spec:\n", - " host: metadata-grpc-service.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/DestinationRule/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " spec:\n", - " host: ml-pipeline.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/DestinationRule/kubeflow/ml-pipeline-minio\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-minio\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-minio\n", - " namespace: kubeflow\n", - " spec:\n", - " host: minio-service.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/DestinationRule/kubeflow/ml-pipeline-mysql\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-mysql\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-mysql\n", - " namespace: kubeflow\n", - " spec:\n", - " host: mysql.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/DestinationRule/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " host: ml-pipeline-ui.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/DestinationRule/kubeflow/ml-pipeline-visualizationserver\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-visualizationserver\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: DestinationRule\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-visualizationserver\n", - " namespace: kubeflow\n", - " spec:\n", - " host: ml-pipeline-visualizationserver.kubeflow.svc.cluster.local\n", - " trafficPolicy:\n", - " tls:\n", - " mode: ISTIO_MUTUAL\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/VirtualService/kubeflow/metadata-grpc\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"VirtualService\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: VirtualService\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc\n", - " namespace: kubeflow\n", - " spec:\n", - " gateways:\n", - " - kubeflow-gateway\n", - " hosts:\n", - " - '*'\n", - " http:\n", - " - match:\n", - " - uri:\n", - " prefix: /ml_metadata\n", - " rewrite:\n", - " uri: /ml_metadata\n", - " route:\n", - " - destination:\n", - " host: metadata-envoy-service.kubeflow.svc.cluster.local\n", - " port:\n", - " number: 9090\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"networking.istio.io/VirtualService/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"VirtualService\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: networking.istio.io/v1alpha3\n", - " kind: VirtualService\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " gateways:\n", - " - kubeflow-gateway\n", - " hosts:\n", - " - '*'\n", - " http:\n", - " - match:\n", - " - uri:\n", - " prefix: /pipeline\n", - " rewrite:\n", - " uri: /pipeline\n", - " route:\n", - " - destination:\n", - " host: ml-pipeline-ui.kubeflow.svc.cluster.local\n", - " port:\n", - " number: 80\n", - " timeout: 300s\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/ClusterRole/_/aggregate-to-kubeflow-pipelines-edit\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"aggregate-to-kubeflow-pipelines-edit\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " rbac.authorization.kubeflow.org/aggregate-to-kubeflow-pipelines-edit: \"true\"\n", - " name: aggregate-to-kubeflow-pipelines-edit\n", - " rules:\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - pipelines\n", - " - pipelines/versions\n", - " verbs:\n", - " - create\n", - " - delete\n", - " - update\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - experiments\n", - " verbs:\n", - " - archive\n", - " - create\n", - " - delete\n", - " - unarchive\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - runs\n", - " verbs:\n", - " - archive\n", - " - create\n", - " - delete\n", - " - retry\n", - " - terminate\n", - " - unarchive\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - jobs\n", - " verbs:\n", - " - create\n", - " - delete\n", - " - disable\n", - " - enable\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - cronworkflows\n", - " - cronworkflows/finalizers\n", - " - workflows\n", - " - workflows/finalizers\n", - " - workfloweventbindings\n", - " - workflowtemplates\n", - " verbs:\n", - " - '*'\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/ClusterRole/_/aggregate-to-kubeflow-pipelines-view\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"aggregate-to-kubeflow-pipelines-view\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " rbac.authorization.kubeflow.org/aggregate-to-kubeflow-pipelines-view: \"true\"\n", - " name: aggregate-to-kubeflow-pipelines-view\n", - " rules:\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - pipelines\n", - " - pipelines/versions\n", - " - experiments\n", - " - runs\n", - " - jobs\n", - " verbs:\n", - " - get\n", - " - list\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - viewers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - delete\n", - " - apiGroups:\n", - " - pipelines.kubeflow.org\n", - " resources:\n", - " - visualizations\n", - " verbs:\n", - " - create\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/ClusterRole/_/argo-aggregate-to-admin\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"argo-aggregate-to-admin\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: ClusterRole\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " rbac.authorization.k8s.io/aggregate-to-admin: \"true\"\n", - " name: argo-aggregate-to-admin\n", - " rules:\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " - workflows/finalizers\n", - " - workfloweventbindings\n", - " - workfloweventbindings/finalizers\n", - " - workflowtemplates\n", - " - workflowtemplates/finalizers\n", - " - cronworkflows\n", - " - cronworkflows/finalizers\n", - " - clusterworkflowtemplates\n", - " - clusterworkflowtemplates/finalizers\n", - " - workflowtasksets\n", - " - workflowtasksets/finalizers\n", - " verbs:\n", - " - create\n", - " - delete\n", - " - deletecollection\n", - " - get\n", - " - list\n", - " - patch\n", - " - update\n", - " - watch\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/ClusterRole/_/argo-aggregate-to-edit\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-persistenceagent-role\n", - " namespace: kubeflow\n", - " rules:\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " - watch\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " - watch\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/Role/kubeflow/ml-pipeline-scheduledworkflow-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-scheduledworkflow-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: Role\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-scheduledworkflow-role\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-scheduledworkflow-role\n", - " namespace: kubeflow\n", - " rules:\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - scheduledworkflows\n", - " - scheduledworkflows/finalizers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - events\n", - " verbs:\n", - " - create\n", - " - patch\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/Role/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: Role\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " rules:\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - pods\n", - " - pods/log\n", - " verbs:\n", - " - get\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - events\n", - " verbs:\n", - " - list\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - secrets\n", - " verbs:\n", - " - get\n", - " - list\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - viewers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - delete\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/Role/kubeflow/ml-pipeline-viewer-controller-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-viewer-controller-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: Role\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-viewer-controller-role\n", - " namespace: kubeflow\n", - " rules:\n", - " - apiGroups:\n", - " - '*'\n", - " resources:\n", - " - deployments\n", - " - services\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - viewers\n", - " - viewers/finalizers\n", - " verbs:\n", - " - create\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - delete\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/Role/kubeflow/pipeline-runner\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"Role\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"pipeline-runner\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: Role\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: pipeline-runner\n", - " namespace: kubeflow\n", - " rules:\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - secrets\n", - " verbs:\n", - " - get\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - configmaps\n", - " verbs:\n", - " - get\n", - " - watch\n", - " - list\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - persistentvolumes\n", - " - persistentvolumeclaims\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - snapshot.storage.k8s.io\n", - " resources:\n", - " - volumesnapshots\n", - " verbs:\n", - " - create\n", - " - delete\n", - " - get\n", - " - apiGroups:\n", - " - argoproj.io\n", - " resources:\n", - " - workflows\n", - " verbs:\n", - " - get\n", - " - list\n", - " - watch\n", - " - update\n", - " - patch\n", - " - apiGroups:\n", - " - \"\"\n", - " resources:\n", - " - pods\n", - " - pods/exec\n", - " - pods/log\n", - " - services\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - \"\"\n", - " - apps\n", - " - extensions\n", - " resources:\n", - " - deployments\n", - " - replicasets\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - kubeflow.org\n", - " resources:\n", - " - '*'\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - batch\n", - " resources:\n", - " - jobs\n", - " verbs:\n", - " - '*'\n", - " - apiGroups:\n", - " - machinelearning.seldon.io\n", - " resources:\n", - " - seldondeployments\n", - " verbs:\n", - " - '*'\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/argo-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"argo-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: argo-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: argo-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: argo\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/kubeflow-pipelines-cache-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app: cache-server\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: kubeflow-pipelines-cache-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-cache\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/kubeflow-pipelines-cache-deployer-rolebinding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-cache-deployer-rolebinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app: cache-deployer\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-cache-deployer-rolebinding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: kubeflow-pipelines-cache-deployer-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-cache-deployer-sa\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/kubeflow-pipelines-metadata-writer-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"kubeflow-pipelines-metadata-writer-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: kubeflow-pipelines-metadata-writer-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: kubeflow-pipelines-metadata-writer-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: kubeflow-pipelines-metadata-writer\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: ml-pipeline\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/ml-pipeline-persistenceagent-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-persistenceagent-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-persistenceagent-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: ml-pipeline-persistenceagent-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: ml-pipeline-persistenceagent\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/ml-pipeline-scheduledworkflow-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-scheduledworkflow-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-scheduledworkflow-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: ml-pipeline-scheduledworkflow-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: ml-pipeline-scheduledworkflow\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app: ml-pipeline-ui\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: ml-pipeline-ui\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/ml-pipeline-viewer-crd-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-viewer-crd-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-viewer-crd-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: ml-pipeline-viewer-controller-role\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: ml-pipeline-viewer-crd-service-account\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"rbac.authorization.k8s.io/RoleBinding/kubeflow/pipeline-runner-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"RoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"pipeline-runner-binding\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: rbac.authorization.k8s.io/v1\n", - " kind: RoleBinding\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: pipeline-runner-binding\n", - " namespace: kubeflow\n", - " roleRef:\n", - " apiGroup: rbac.authorization.k8s.io\n", - " kind: Role\n", - " name: pipeline-runner\n", - " subjects:\n", - " - kind: ServiceAccount\n", - " name: pipeline-runner\n", - " namespace: kubeflow\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/metadata-grpc-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"metadata-grpc-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: metadata-grpc-service\n", - " namespace: kubeflow\n", - " spec:\n", - " action: ALLOW\n", - " rules:\n", - " - {}\n", - " selector:\n", - " matchLabels:\n", - " component: metadata-grpc-server\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/minio-service\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"minio-service\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: minio-service\n", - " namespace: kubeflow\n", - " spec:\n", - " action: ALLOW\n", - " rules:\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-ui\n", - " - {}\n", - " selector:\n", - " matchLabels:\n", - " app: minio\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/ml-pipeline\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-ui\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-persistenceagent\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-scheduledworkflow\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-viewer-crd-service-account\n", - " - cluster.local/ns/kubeflow/sa/kubeflow-pipelines-cache\n", - " - when:\n", - " - key: request.headers[kubeflow-userid]\n", - " notValues:\n", - " - '*'\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/ml-pipeline-ui\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-ui\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-ui\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - from:\n", - " - source:\n", - " namespaces:\n", - " - istio-system\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-ui\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/ml-pipeline-visualizationserver\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"ml-pipeline-visualizationserver\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " app.kubernetes.io/component: ml-pipeline\n", - " app.kubernetes.io/name: kubeflow-pipelines\n", - " application-crd-id: kubeflow-pipelines\n", - " name: ml-pipeline-visualizationserver\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-ui\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-persistenceagent\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-scheduledworkflow\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-viewer-crd-service-account\n", - " - cluster.local/ns/kubeflow/sa/kubeflow-pipelines-cache\n", - " selector:\n", - " matchLabels:\n", - " app: ml-pipeline-visualizationserver\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/mysql\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_new\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mkind\u001B[0m\u001B[0m = \"AuthorizationPolicy\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_manifest_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mlive_uid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mname\u001B[0m\u001B[0m = \"mysql\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mnamespace\u001B[0m\u001B[0m = \"kubeflow\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mserver_side_apply\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0muid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mvalidate_schema\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mwait_for_rollout\u001B[0m\u001B[0m = true\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body\u001B[0m\u001B[0m = (sensitive value)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_body_parsed\u001B[0m\u001B[0m = <<-EOT\n", - " apiVersion: security.istio.io/v1beta1\n", - " kind: AuthorizationPolicy\n", - " metadata:\n", - " labels:\n", - " application-crd-id: kubeflow-pipelines\n", - " name: mysql\n", - " namespace: kubeflow\n", - " spec:\n", - " rules:\n", - " - from:\n", - " - source:\n", - " principals:\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-ui\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-persistenceagent\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-scheduledworkflow\n", - " - cluster.local/ns/kubeflow/sa/ml-pipeline-viewer-crd-service-account\n", - " - cluster.local/ns/kubeflow/sa/kubeflow-pipelines-cache\n", - " - cluster.local/ns/kubeflow/sa/metadata-grpc-server\n", - " selector:\n", - " matchLabels:\n", - " app: mysql\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0myaml_incluster\u001B[0m\u001B[0m = (sensitive value)\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kubectl_manifest.pipelines-multi-user-pns[\"security.istio.io/AuthorizationPolicy/kubeflow/service-cache-server\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kubectl_manifest\" \"pipelines-multi-user-pns\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapi_version\u001B[0m\u001B[0m = \"security.istio.io/v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mapply_only\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mforce_conflicts\u001B[0m\u001B[0m = false\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the CertificateRequest. This is set and managed automatically.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mca = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CertificateRequestCondition contains condition information for a CertificateRequest.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastTransitionTime is the timestamp corresponding to the last status change of this condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Message is a human readable description of the details of the last transition, complementing reason.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Reason is a brief machine readable explanation for the condition's last transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the condition, one of (`True`, `False`, `Unknown`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"True\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"False\",\r\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Unknown\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Approved\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Approved\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Denied\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Denied\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.username\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Requestor\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n", - " All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n", - " A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the CertificateRequest resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mduration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mextra = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroups = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"atomic\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0misCA = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequest = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM-encoded x509 certificate signing request to be submitted to the CA for signing.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muid = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0musages = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: \\\"signing\\\", \\\"digital signature\\\", \\\"content commitment\\\", \\\"key encipherment\\\", \\\"key agreement\\\", \\\"data encipherment\\\", \\\"cert sign\\\", \\\"crl sign\\\", \\\"encipher only\\\", \\\"decipher only\\\", \\\"any\\\", \\\"server auth\\\", \\\"client auth\\\", \\\"code signing\\\", \\\"email protection\\\", \\\"s/mime\\\", \\\"ipsec end system\\\", \\\"ipsec tunnel\\\", \\\"ipsec user\\\", \\\"timestamping\\\", \\\"ocsp signing\\\", \\\"microsoft sgc\\\", \\\"netscape sgc\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"digital signature\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"content commitment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key agreement\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"data encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"crl sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"encipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"decipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"any\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"server auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"client auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"code signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"email protection\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"s/mime\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec end system\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec tunnel\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec user\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"timestamping\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ocsp signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"microsoft sgc\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"netscape sgc\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0musername = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"request\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the CertificateRequest. This is set and managed automatically.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mca = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CertificateRequestCondition contains condition information for a CertificateRequest.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastTransitionTime is the timestamp corresponding to the last status change of this condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Message is a human readable description of the details of the last transition, complementing reason.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Reason is a brief machine readable explanation for the condition's last transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the condition, one of (`True`, `False`, `Unknown`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"True\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"False\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Unknown\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"spec\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Approved\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Approved\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Denied\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Denied\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.username\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Requestor\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n", - " All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n", - " A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the CertificateRequest resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mduration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mextra = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroups = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"atomic\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0misCA = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequest = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM-encoded x509 certificate signing request to be submitted to the CA for signing.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muid = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0musages = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Usages is the set of x509 usages that are requested for the certificate. If usages are set they SHOULD be encoded inside the CSR spec Defaults to `digital signature` and `key encipherment` if not specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: \\\"signing\\\", \\\"digital signature\\\", \\\"content commitment\\\", \\\"key encipherment\\\", \\\"key agreement\\\", \\\"data encipherment\\\", \\\"cert sign\\\", \\\"crl sign\\\", \\\"encipher only\\\", \\\"decipher only\\\", \\\"any\\\", \\\"server auth\\\", \\\"client auth\\\", \\\"code signing\\\", \\\"email protection\\\", \\\"s/mime\\\", \\\"ipsec end system\\\", \\\"ipsec tunnel\\\", \\\"ipsec user\\\", \\\"timestamping\\\", \\\"ocsp signing\\\", \\\"microsoft sgc\\\", \\\"netscape sgc\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"digital signature\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"content commitment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key agreement\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"data encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"crl sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"encipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"decipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"any\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"server auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"client auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"code signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"email protection\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"s/mime\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec end system\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec tunnel\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec user\",\r\n", - " \u001B[32m+\u001B[0m \u001B[0m\"timestamping\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ocsp signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"microsoft sgc\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"netscape sgc\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0musername = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"request\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the CertificateRequest. This is set and managed automatically.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mca = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CertificateRequestCondition contains condition information for a CertificateRequest.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastTransitionTime is the timestamp corresponding to the last status change of this condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Message is a human readable description of the details of the last transition, complementing reason.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastFailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnextPrivateKeySecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnotAfter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnotBefore = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The time after which the certificate stored in the secret named by this resource in spec.secretName is valid.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrenewalTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrevision = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " The current 'revision' of the certificate as issued. \n", - " When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n", - " Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n", - " Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.secretName\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A Certificate resource should be created to ensure an up to date and signed x509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`. \n", - " The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`).\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the Certificate resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommonName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CommonName is a common name to be used on the Certificate. The CommonName should have a length of 64 characters or fewer to avoid generating invalid CSRs. This value is ignored by TLS clients when any subject alt name is set. This is x509 behaviour: https://tools.ietf.org/html/rfc6125#section-6.4.4\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DNSNames is a list of DNS subjectAltNames to be set on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mduration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. If unset this defaults to 90 days. Certificate will be renewed either 2/3 through its duration or `renewBefore` period before its expiry, whichever is later. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memailSANs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EmailSANs is a list of email subjectAltNames to be set on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mencodeUsagesInRequest = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EncodeUsagesInRequest controls whether key usages should be present in the CertificateRequest\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mipAddresses = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IPAddresses is a list of IP address subjectAltNames to be set on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0misCA = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IsCA will mark this Certificate as valid for certificate signing. This will automatically add the `cert sign` usage to the list of `usages`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IssuerRef is a reference to the issuer for this certificate. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the Certificate will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeystores = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Keystores configures additional keystore output formats stored in the `secretName` Secret resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mjks = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"JKS configures options for storing a JKS keystore in the `spec.secretName` Secret resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcreate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Create enables JKS keystore creation for the Certificate. If true, a file named `keystore.jks` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpasswordSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the JKS keystore.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"passwordSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpkcs12 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PKCS12 configures options for storing a PKCS12 keystore in the `spec.secretName` Secret resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcreate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Create enables PKCS12 keystore creation for the Certificate. If true, a file named `keystore.p12` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpasswordSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the PKCS12 keystore.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"passwordSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Options to control private keys used for the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0malgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Algorithm is the private key algorithm of the corresponding private key for this certificate. If provided, allowed values are either `RSA` or `ECDSA` If `algorithm` is specified and `size` is not provided, key size of 256 will be used for `ECDSA` key algorithm and key size of 2048 will be used for `RSA` key algorithm.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"RSA\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ECDSA\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mencoding = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The private key cryptography standards (PKCS) encoding for this certificate's private key to be encoded in. If provided, allowed values are `PKCS1` and `PKCS8` standing for PKCS#1 and PKCS#8, respectively. Defaults to `PKCS1` if not specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"PKCS1\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"PKCS8\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrotationPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RotationPolicy controls how private keys should be regenerated when a re-issuance is being processed. If set to Never, a private key will only be generated if one does not already exist in the target `spec.secretName`. If one does exists but it does not have the correct algorithm or size, a warning will be raised to await user intervention. If set to Always, a private key matching the specified requirements will be generated whenever a re-issuance occurs. Default is 'Never' for backward compatibility.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msize = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Size is the key bit size of the corresponding private key for this certificate. If `algorithm` is set to `RSA`, valid values are `2048`, `4096` or `8192`, and will default to `2048` if not specified. If `algorithm` is set to `ECDSA`, valid values are `256`, `384` or `521`, and will default to `256` if not specified. No other values are allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrenewBefore = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How long before the currently issued certificate's expiry cert-manager should renew the certificate. The default is 2/3 of the issued certificate's duration. Minimum accepted value is 5 minutes. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrevisionHistoryLimit = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"revisionHistoryLimit is the maximum number of CertificateRequest revisions that are maintained in the Certificate's history. Each revision represents a single `CertificateRequest` created by this Certificate, either when it was created, renewed, or Spec was changed. Revisions will be removed by oldest first if the number of revisions exceeds this number. If set, revisionHistoryLimit must be a value of `1` or greater. If unset (`nil`), revisions will not be garbage collected. Default value is `nil`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecretName is the name of the secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecretTemplate defines annotations and labels to be propagated to the Kubernetes Secret when it is created or updated. Once created, labels and annotations are not yet removed from the Secret when they are removed from the template. See https://github.com/jetstack/cert-manager/issues/4292\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations is a key value map to be copied to the target Kubernetes Secret.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels is a key value map to be copied to the target Kubernetes Secret.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcountries = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Countries to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalities = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Cities to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0morganizationalUnits = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Organizational Units to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0morganizations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Organizations to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpostalCodes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Postal codes to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprovinces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"State/Provinces to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserialNumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Serial number to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstreetAddresses = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Street addresses to be used on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muriSANs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URISANs is a list of URI subjectAltNames to be set on the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0musages = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: \\\"signing\\\", \\\"digital signature\\\", \\\"content commitment\\\", \\\"key encipherment\\\", \\\"key agreement\\\", \\\"data encipherment\\\", \\\"cert sign\\\", \\\"crl sign\\\", \\\"encipher only\\\", \\\"decipher only\\\", \\\"any\\\", \\\"server auth\\\", \\\"client auth\\\", \\\"code signing\\\", \\\"email protection\\\", \\\"s/mime\\\", \\\"ipsec end system\\\", \\\"ipsec tunnel\\\", \\\"ipsec user\\\", \\\"timestamping\\\", \\\"ocsp signing\\\", \\\"microsoft sgc\\\", \\\"netscape sgc\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"digital signature\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"content commitment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key agreement\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"data encipherment\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"crl sign\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"encipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"decipher only\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"any\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"server auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"client auth\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"code signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"email protection\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"s/mime\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec end system\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec tunnel\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ipsec user\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"timestamping\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ocsp signing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"microsoft sgc\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"netscape sgc\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secretName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the Certificate. This is set and managed automatically.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of status conditions to indicate the status of certificates. Known condition types are `Ready` and `Issuing`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CertificateCondition contains condition information for an Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastTransitionTime is the timestamp corresponding to the last status change of this condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Message is a human readable description of the details of the last transition, complementing reason.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mobservedGeneration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Certificate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Reason is a brief machine readable explanation for the condition's last transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the condition, one of (`True`, `False`, `Unknown`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"True\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"False\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Unknown\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type of the condition, known values are (`Ready`, `Issuing`).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastFailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnextPrivateKeySecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnotAfter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnotBefore = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The time after which the certificate stored in the secret named by this resource in spec.secretName is valid.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrenewalTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrevision = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " The current 'revision' of the certificate as issued. \n", - " When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n", - " Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n", - " Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"spec\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinityTerm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A pod affinity term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaceSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"podAffinityTerm\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\r\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaceSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAntiAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinityTerm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A pod affinity term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaceSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"podAffinityTerm\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaceSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's priorityClassName.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's service account\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's tolerations.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's priorityClassName.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's service account\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's tolerations.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerationSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsZones = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector that is used to refine the set of certificate's that this challenge solver will apply to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtoken = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ACME challenge token for this challenge. This is the raw value returned from the ACME server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The type of ACME challenge this resource represents. One of \\\"HTTP-01\\\" or \\\"DNS-01\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HTTP-01\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DNS-01\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The URL of the ACME Challenge resource for this challenge. This can be used to lookup details about the status of this challenge.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwildcard = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"wildcard will be true if this challenge is for a wildcard identifier, for example '*.example.com'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authorizationURL\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"dnsName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solver\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"token\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"url\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpresented = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"presented will be set to true if the challenge values for this challenge are currently 'presented'. This *does not* imply the self check is passing. Only that the values have been 'submitted' for the appropriate challenge mechanism (i.e. the DNS01 TXT record has been presented, or the HTTP01 configuration has been configured).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprocessing = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Used to denote whether this challenge should be processed or not. This field will only be set to true by the 'scheduling' component. It will only be set to false by the 'challenges' controller, after the challenge has reached a final state or timed out. If this field is set to false, the challenge controller will not take any more action.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Contains human readable information on why the Challenge is in the current state.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Contains the current 'state' of the challenge. If not set, the state of the challenge is unknown.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"valid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ready\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pending\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"processing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"invalid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"expired\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"errored\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metadata\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"spec\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.state\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.dnsName\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Domain\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Challenge is a type to represent a Challenge request with an ACME server\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mauthorizationURL = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The URL to the ACME Authorization resource that this challenge is a part of.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"dnsName is the identifier that this challenge is for, e.g. example.com. If the requested DNSName is a 'wildcard', this field MUST be set to the non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"References a properly configured ACME-type Issuer which should be used to create this Challenge. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Challenge will be marked as failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ACME challenge key for this challenge For HTTP01 challenges, this is the value that must be responded with to complete the HTTP01 challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded SHA256 sum of the `.` text that must be set as the TXT record content.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Contains the domain solving configuration that should be used to solve this challenge resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdns01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macmeDNS = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accountSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"host\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0makamai = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Akamai DNS zone management API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazureDNS = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudDNS = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisableAccountKeyGeneration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableDurationFeature = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexternalAccountBinding = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS256\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS384\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS512\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keyID is the ID of the CA key that the External Account is bound to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keyID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keySecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let's Encrypt's DST crosssign you would use: \\\"DST Root CA X3\\\" or \\\"ISRG Root X1\\\" for the newer Let's Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer's CN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxLength = 64\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Server is the URL used to access the ACME server's 'directory' endpoint. For example, for Let's Encrypt's staging endpoint, you would use: \\\"https://acme-staging-v02.api.letsencrypt.org/directory\\\". Only ACME v2 endpoints (i.e. RFC 8555) are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mskipTLSVerify = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolvers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdns01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macmedns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accountSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"host\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0makamai = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Akamai DNS zone management API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazuredns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclouddns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"groupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solverName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgatewayHTTPRoute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingress = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingressTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazuredns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclouddns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"groupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solverName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgatewayHTTPRoute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingress = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingressTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the create ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's scheduling constraints\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes node affinity scheduling rules for the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreference = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"preference\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelectorTerms = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A list of node selector terms. The terms are ORed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A ClusterIssuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is similar to an Issuer, however it is cluster-scoped and therefore can be referenced by resources that exist in *any* namespace, not just the same namespace as the referent.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the ClusterIssuer resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisableAccountKeyGeneration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableDurationFeature = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexternalAccountBinding = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS256\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS384\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS512\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keyID is the ID of the CA key that the External Account is bound to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\r\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keyID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keySecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let's Encrypt's DST crosssign you would use: \\\"DST Root CA X3\\\" or \\\"ISRG Root X1\\\" for the newer Let's Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer's CN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxLength = 64\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Server is the URL used to access the ACME server's 'directory' endpoint. For example, for Let's Encrypt's staging endpoint, you would use: \\\"https://acme-staging-v02.api.letsencrypt.org/directory\\\". Only ACME v2 endpoints (i.e. RFC 8555) are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mskipTLSVerify = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolvers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdns01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macmedns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accountSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"host\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0makamai = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Akamai DNS zone management API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazuredns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclouddns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudDNS = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"groupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solverName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgatewayHTTPRoute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingress = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingressTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the create ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\r\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's scheduling constraints\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes node affinity scheduling rules for the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreference = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"preference\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelectorTerms = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A list of node selector terms. The terms are ORed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"apiextensions.k8s.io/CustomResourceDefinition/_/issuers.cert-manager.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager.io/inject-ca-from-secret\" = \"cert-manager/cert-manager-webhook-ca\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"issuers.cert-manager.io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconversion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstrategy = \"Webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientConfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mservice = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = \"/convert\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconversionReviewVersions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"v1\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"v1beta1\",\n", - " ]\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"cert-manager.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"IssuerList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"issuers\"\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"issuer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreserveUnknownFields = false\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha2\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the Issuer resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisableAccountKeyGeneration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableDurationFeature = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexternalAccountBinding = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS256\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS384\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS512\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keyID is the ID of the CA key that the External Account is bound to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keyID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keySecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let's Encrypt's DST crosssign you would use: \\\"DST Root CA X3\\\" or \\\"ISRG Root X1\\\" for the newer Let's Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer's CN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxLength = 64\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Server is the URL used to access the ACME server's 'directory' endpoint. For example, for Let's Encrypt's staging endpoint, you would use: \\\"https://acme-staging-v02.api.letsencrypt.org/directory\\\". Only ACME v2 endpoints (i.e. RFC 8555) are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mskipTLSVerify = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolvers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdns01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macmedns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\r\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accountSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"host\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0makamai = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Akamai DNS zone management API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazuredns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclouddns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Ready\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[?(@.type==\\\"Ready\\\")].message\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Desired state of the Issuer resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisableAccountKeyGeneration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableDurationFeature = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexternalAccountBinding = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS256\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS384\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HS512\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keyID is the ID of the CA key that the External Account is bound to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keyID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"keySecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let's Encrypt's DST crosssign you would use: \\\"DST Root CA X3\\\" or \\\"ISRG Root X1\\\" for the newer Let's Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer's CN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxLength = 64\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Server is the URL used to access the ACME server's 'directory' endpoint. For example, for Let's Encrypt's staging endpoint, you would use: \\\"https://acme-staging-v02.api.letsencrypt.org/directory\\\". Only ACME v2 endpoints (i.e. RFC 8555) are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mskipTLSVerify = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolvers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdns01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0macmedns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accountSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"host\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0makamai = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Akamai DNS zone management API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceConsumerDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"accessTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientSecretSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"clientTokenSecretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceConsumerDomain\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazuredns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclouddns = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"groupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solverName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgatewayHTTPRoute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingress = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingressTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the create ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's scheduling constraints\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes node affinity scheduling rules for the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreference = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"preference\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelectorTerms = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A list of node selector terms. The terms are ORed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nodeSelectorTerms\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinityTerm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A pod affinity term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaceSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Microsoft Azure DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclientID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientSecret are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"if both this and ClientID are left unset MSI will be used\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzurePublicCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureChinaCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureGermanCloud\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AzureUSGovernmentCloud\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceGroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubscriptionID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenantID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"when specifying ClientID and ClientSecret then this field is also needed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resourceGroupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subscriptionID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudDNS = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Google Cloud DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"project\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcloudflare = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the Cloudflare API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiTokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API token used to authenticate with Cloudflare.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memail = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Email of the account, only required when using API key based authentication.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcnameStrategy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"None\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"Follow\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdigitalocean = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the DigitalOcean DNS API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtokenSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenSecretRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrfc2136 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use RFC2136 (\\\"Dynamic Updates in the Domain Name System\\\") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1])\\u00a0; port is optional. This field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigAlgorithm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigKeyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtsigSecretSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nameserver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute53 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the AWS Route53 API to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessKeyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostedZoneID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Always set the region when using AccessKeyID and SecretAccessKey\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretAccessKeySecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"region\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgroupName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msolverName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"groupName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"solverName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp01 = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgatewayHTTPRoute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingress = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mingressTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver ingress.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Annotations that should be added to the create ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Labels that should be added to the created ACME HTTP01 solver pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's scheduling constraints\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes node affinity scheduling rules for the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreference = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"preference\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelectorTerms = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A list of node selector terms. The terms are ORed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchFields = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's fields.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager-acme\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Order\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"OrderList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"orders\"\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"order\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreserveUnknownFields = false\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.state\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha2\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Order is a type to represent an Order with an ACME server\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommonName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcsr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mduration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mipAddresses = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"csr\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mauthorizations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mchallenges = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtoken = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"token\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"url\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0midentifier = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Identifier is the DNS name to be validated as part of this authorization\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialState = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"valid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ready\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pending\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"processing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"invalid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"expired\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"errored\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL is the URL of the Authorization that must be completed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwildcard = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"url\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfinalizeURL = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Reason optionally provides more information about a why the order is in the current state.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"State contains the current state of this Order resource. States 'success' and 'expired' are 'final'\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"valid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ready\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pending\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"processing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"invalid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"expired\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"errored\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metadata\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.state\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Order is a type to represent an Order with an ACME server\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommonName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcsr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mduration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mipAddresses = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0missuerRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the resource being referred to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"csr\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuerRef\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mauthorizations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mchallenges = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtoken = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"token\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"url\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0midentifier = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Identifier is the DNS name to be validated as part of this authorization\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialState = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"valid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ready\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pending\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"processing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"invalid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"expired\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"errored\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL is the URL of the Authorization that must be completed\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwildcard = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"url\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"byte\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfinalizeURL = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Reason optionally provides more information about a why the order is in the current state.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"State contains the current state of this Order resource. States 'success' and 'expired' are 'final'\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"valid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ready\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pending\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"processing\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"invalid\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"expired\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"errored\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0murl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metadata\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.state\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.issuerRef.name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Issuer\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Reason\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Order is a type to represent an Order with an ACME server\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommonName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"acme.cert-manager.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"orders/finalizers\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\r\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secrets\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"events\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " ]\n", - " },\n", - " ]\r\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRole/_/cert-manager-edit\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io/aggregate-to-admin\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io/aggregate-to-edit\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-edit\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"certificates\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"certificaterequests\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuers\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"deletecollection\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"acme.cert-manager.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"challenges\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"orders\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"deletecollection\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRole/_/cert-manager-view\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io/aggregate-to-admin\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io/aggregate-to-edit\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io/aggregate-to-view\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-view\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cert-manager.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"certificates\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"certificaterequests\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"issuers\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"acme.cert-manager.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"challenges\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"orders\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRole/_/cert-manager-webhook:subjectaccessreviews\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-webhook:subjectaccessreviews\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authorization.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subjectaccessreviews\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-cainjector\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cainjector\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"cainjector\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cainjector\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-cainjector\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-cainjector\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-cainjector\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-approve:cert-manager-io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-approve:cert-manager-io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-approve:cert-manager-io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-certificates\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-certificates\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-certificates\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-certificatesigningrequests\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-certificatesigningrequests\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-certificatesigningrequests\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-challenges\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-challenges\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-challenges\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-clusterissuers\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-clusterissuers\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-clusterissuers\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-ingress-shim\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-ingress-shim\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-ingress-shim\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-issuers\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-issuers\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-issuers\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-controller-orders\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/version\" = \"v1.5.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-orders\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager-controller-orders\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"cert-manager\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.cert-manager-base[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/cert-manager-webhook:subjectaccessreviews\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/component\" = \"webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/instance\" = \"cert-manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"app.kubernetes.io/name\" = \"webhook\"\n", - " image: \"{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image }}\"\n", - " {{- else }}\n", - " image: \"{{ .Values.global.hub }}/{{ .Values.global.proxy.image }}:{{ .Values.global.tag }}\"\n", - " {{- end }}\n", - " args:\n", - " - proxy\n", - " - sidecar\n", - " - --domain\n", - " - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}\n", - " - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}\n", - " {{- if .Values.global.sts.servicePort }}\n", - " - --stsPort={{ .Values.global.sts.servicePort }}\n", - " {{- end }}\n", - " {{- if .Values.global.logAsJson }}\n", - " - --log_as_json\n", - " {{- end }}\n", - " env:\n", - " - name: \"GRPC_XDS_BOOTSTRAP\"\n", - " value: \"/var/lib/istio/data/grpc-bootstrap.json\"\n", - " - name: ISTIO_META_GENERATOR\n", - " value: grpc\n", - " - name: OUTPUT_CERTS\n", - " value: /var/lib/istio/data\n", - " {{- if eq (env \"PILOT_ENABLE_INBOUND_PASSTHROUGH\" \"true\") \"false\" }}\n", - " - name: REWRITE_PROBE_LEGACY_LOCALHOST_DESTINATION\n", - " value: \"true\"\n", - " {{- end }}\n", - " - name: JWT_POLICY\n", - " value: {{ .Values.global.jwtPolicy }}\n", - " - name: PILOT_CERT_PROVIDER\n", - " value: {{ .Values.global.pilotCertProvider }}\n", - " - name: CA_ADDR\n", - " {{- if .Values.global.caAddress }}\n", - " value: {{ .Values.global.caAddress }}\n", - " {{- else }}\n", - " value: istiod{{- if not (eq .Values.revision \"\") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012\n", - " {{- end }}\n", - " - name: POD_NAME\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.name\n", - " - name: POD_NAMESPACE\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: metadata.namespace\n", - " - name: INSTANCE_IP\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: status.podIP\n", - " - name: SERVICE_ACCOUNT\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: spec.serviceAccountName\n", - " - name: HOST_IP\n", - " valueFrom:\n", - " fieldRef:\n", - " fieldPath: status.hostIP\n", - " - name: PROXY_CONFIG\n", - " value: |\n", - " {{ protoToJSON .ProxyConfig }}\n", - " - name: ISTIO_META_POD_PORTS\n", - " value: |-\n", - " [\n", - " {{- $first := true }}\n", - " {{- range $index1, $c := .Spec.Containers }}\n", - " {{- range $index2, $p := $c.Ports }}\n", - " {{- if (structToJSON $p) }}\n", - " {{if not $first}},{{end}}{{ structToJSON $p }}\n", - " {{- $first = false }}\n", - " {{- end }}\n", - " {{- end}}\n", - " {{- end}}\n", - " ]\n", - " - name: ISTIO_META_APP_CONTAINERS\n", - " value: \"{{ $containers | join \",\" }}\"\n", - " - name: ISTIO_META_CLUSTER_ID\n", - " value: \"{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}\"\n", - " - name: ISTIO_META_INTERCEPTION_MODE\n", - " value: \"{{ or (index .ObjectMeta.Annotations `sidecar.istio.io/interceptionMode`) .ProxyConfig.InterceptionMode.String }}\"\n", - " {{- if .Values.global.network }}\n", - " - name: ISTIO_META_NETWORK\n", - " value: \"{{ .Values.global.network }}\"\n", - " {{- end }}\n", - " {{- if .DeploymentMeta.Name }}\n", - " - name: ISTIO_META_WORKLOAD_NAME\n", - " value: \"{{ .DeploymentMeta.Name }}\"\n", - " {{ end }}\n", - " {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}\n", - " - name: ISTIO_META_OWNER\n", - " value: kubernetes://apis/{{ .TypeMeta.APIVersion }}/namespaces/{{ valueOrDefault .DeploymentMeta.Namespace `default` }}/{{ toLower .TypeMeta.Kind}}s/{{ .DeploymentMeta.Name }}\n", - " {{- end}}\n", - " {{- if .Values.global.meshID }}\n", - " - name: ISTIO_META_MESH_ID\n", - " value: \"{{ .Values.global.meshID }}\"\n", - " {{- else if (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain) }}\n", - " - name: ISTIO_META_MESH_ID\n", - " value: \"{{ (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain) }}\"\n", - " {{- end }}\n", - " {{- with (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain) }}\n", - " - name: TRUST_DOMAIN\n", - " value: \"{{ . }}\"\n", - " {{- end }}\n", - " {{- range $key, $value := .ProxyConfig.ProxyMetadata }}\n", - " - name: {{ $key }}\n", - " value: \"{{ $value }}\"\n", - " {{- end }}\n", - " # grpc uses xds:/// to resolve – no need to resolve VIP\n", - " - name: ISTIO_META_DNS_CAPTURE\n", - " value: \"false\"\n", - " - name: DISABLE_ENVOY\n", - " value: \"true\"\n", - " {{with .Values.global.imagePullPolicy }}imagePullPolicy: \"{{.}}\"{{end}}\n", - " {{ if ne (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) `0` }}\n", - " readinessProbe:\n", - " httpGet:\n", - " path: /healthz/ready\n", - " port: {{ .Values.global.proxy.statusPort }}\n", - " initialDelaySeconds: {{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/initialDelaySeconds` .Values.global.proxy.readinessInitialDelaySeconds }}\n", - " periodSeconds: {{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/periodSeconds` .Values.global.proxy.readinessPeriodSeconds }}\n", - " timeoutSeconds: 3\n", - " failureThreshold: {{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/failureThreshold` .Values.global.proxy.readinessFailureThreshold }}\n", - " {{ end -}}\n", - " resources:\n", - " {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}\n", - " {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}\n", - " requests:\n", - " {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) -}}\n", - " cpu: \"{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU` }}\"\n", - " {{ end }}\n", - " {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) -}}\n", - " memory: \"{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory` }}\"\n", - " {{ end }}\n", - " {{- end }}\n", - " {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}\n", - " limits:\n", - " {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) -}}\n", - " cpu: \"{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit` }}\"\n", - " {{ end }}\n", - " {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) -}}\n", - " memory: \"{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit` }}\"\n", - " {{ end }}\n", - " {{- end }}\n", - " {{- else }}\n", - " {{- if .Values.global.proxy.resources }}\n", - " {{ toYaml .Values.global.proxy.resources | indent 6 }}\n", - " {{- end }}\n", - " {{- end }}\n", - " volumeMounts:\n", - " {{- if eq .Values.global.pilotCertProvider \"istiod\" }}\n", - " - mountPath: /var/run/secrets/istio\n", - " name: istiod-ca-cert\n", - " {{- end }}\n", - " - mountPath: /var/lib/istio/data\n", - " name: istio-data\n", - " # UDS channel between istioagent and gRPC client for XDS/SDS\n", - " - mountPath: /etc/istio/proxy\n", - " name: istio-xds\n", - " {{- if eq .Values.global.jwtPolicy \"third-party-jwt\" }}\n", - " - mountPath: /var/run/secrets/tokens\n", - " name: istio-token\n", - " {{- end }}\n", - " - name: istio-podinfo\n", - " mountPath: /etc/istio/pod\n", - " {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount` }}\n", - " {{ range $index, $value := fromJSON (index .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount`) }}\n", - " - name: \"{{ $index }}\"\n", - " {{ toYaml $value | indent 6 }}\n", - " {{ end }}\n", - " {{- end }}\n", - " volumes:\n", - " # UDS channel between istioagent and gRPC client for XDS/SDS\n", - " - emptyDir:\n", - " medium: Memory\n", - " name: istio-xds\n", - " - name: istio-data\n", - " emptyDir: {}\n", - " - name: istio-podinfo\n", - " downwardAPI:\n", - " items:\n", - " - path: \"labels\"\n", - " fieldRef:\n", - " fieldPath: metadata.labels\n", - " - path: \"annotations\"\n", - " fieldRef:\n", - " fieldPath: metadata.annotations\n", - " {{- if eq .Values.global.jwtPolicy \"third-party-jwt\" }}\n", - " - name: istio-token\n", - " projected:\n", - " sources:\n", - " - serviceAccountToken:\n", - " path: istio-token\n", - " expirationSeconds: 43200\n", - " audience: {{ .Values.global.sds.token.aud }}\n", - " {{- end }}\n", - " {{- if eq .Values.global.pilotCertProvider \"istiod\" }}\n", - " - name: istiod-ca-cert\n", - " configMap:\n", - " name: istio-ca-root-cert\n", - " {{- end }}\n", - " {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolume` }}\n", - " {{range $index, $value := fromJSON (index .ObjectMeta.Annotations `sidecar.istio.io/userVolume`) }}\n", - " - name: \"{{ $index }}\"\n", - " {{ toYaml $value | indent 4 }}\n", - " {{ end }}\n", - " {{ end }}\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mglobal = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcaAddress = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigCluster = false\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigValidation = true\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultNodeSelector = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultPodDisruptionBudget = {\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultResources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"10m\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = true\n", - " \u001B[32m+\u001B[0m \u001B[0mexternalIstiod = false\n", - " \u001B[32m+\u001B[0m \u001B[0mhub = \"docker.io/istio\"\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullSecrets = []\n", - " \u001B[32m+\u001B[0m \u001B[0mistioNamespace = \"istio-system\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistiod = {\n", - " \u001B[32m+\u001B[0m \u001B[0menableAnalysis = false\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mjwtPolicy = \"third-party-jwt\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlogAsJson = false\n", - " \u001B[32m+\u001B[0m \u001B[0mlogging = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = \"default:info\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmeshID = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmeshNetworks = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mmountMtlsCerts = false\n", - " \u001B[32m+\u001B[0m \u001B[0mmultiCluster = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclusterName = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = false\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnetwork = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0momitSidecarInjectorConfigMap = false\n", - " \u001B[32m+\u001B[0m \u001B[0moneNamespace = false\n", - " \u001B[32m+\u001B[0m \u001B[0moperatorManageWebhooks = false\n", - " \u001B[32m+\u001B[0m \u001B[0mpilotCertProvider = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClassName = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mautoInject = \"enabled\"\n", - " \u001B[32m+\u001B[0m \u001B[0mclusterDomain = \"cluster.local\"\n", - " \u001B[32m+\u001B[0m \u001B[0mcomponentLogLevel = \"misc:error\"\n", - " \u001B[32m+\u001B[0m \u001B[0menableCoreDump = false\n", - " \u001B[32m+\u001B[0m \u001B[0mexcludeIPRanges = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mexcludeInboundPorts = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mexcludeOutboundPorts = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mholdApplicationUntilProxyStarts = false\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = \"proxyv2\"\n", - " \u001B[32m+\u001B[0m \u001B[0mincludeIPRanges = \"*\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlogLevel = \"warning\"\n", - " \u001B[32m+\u001B[0m \u001B[0mprivileged = false\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessFailureThreshold = 30\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessInitialDelaySeconds = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessPeriodSeconds = 2\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"2000m\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmemory = \"1024Mi\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"10m\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmemory = \"40Mi\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatusPort = 15020\n", - " \u001B[32m+\u001B[0m \u001B[0mtracer = \"zipkin\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy_init = {\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = \"proxyv2\"\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"2000m\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmemory = \"1024Mi\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"10m\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmemory = \"10Mi\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mremotePilotAddress = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0msds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtoken = {\n", - " \u001B[32m+\u001B[0m \u001B[0maud = \"istio-ca\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mservicePort = 0\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtag = \"1.11.4\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtracer = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdatadog = {\n", - " \u001B[32m+\u001B[0m \u001B[0maddress = \"$(HOST_IP):8126\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlightstep = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessToken = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0maddress = \"\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstackdriver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = false\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxNumberOfAnnotations = 200\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxNumberOfAttributes = 200\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxNumberOfMessageEvents = 200\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mzipkin = {\n", - " \u001B[32m+\u001B[0m \u001B[0maddress = \"\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0museMCP = false\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mistio_cni = {\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = false\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrevision = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0msidecarInjectorWebhook = {\n", - " \u001B[32m+\u001B[0m \u001B[0malwaysInjectSelector = []\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultTemplates = []\n", - " \u001B[32m+\u001B[0m \u001B[0menableNamespacesByDefault = false\n", - " \u001B[32m+\u001B[0m \u001B[0minjectedAnnotations = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mneverInjectSelector = []\n", - " \u001B[32m+\u001B[0m \u001B[0mobjectSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mautoInject = true\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrewriteAppHTTPProbe = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtemplates = {}\n", - " }\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ConfigMap\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"Pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-sidecar-injector\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"_/Service/istio-system/istio-ingressgateway\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"IngressGateways\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mports = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"status-port\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 15021\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 15021\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"http2\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 80\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 8080\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"https\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 443\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 8443\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 31400\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 31400\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tls\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 15443\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 15443\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"ingressgateway\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"NodePort\"\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"_/Service/istio-system/istiod\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Service\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"Pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mports = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"grpc-xds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 15010\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"https-dns\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 15012\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"https-webhook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 443\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = 15017\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"http-monitoring\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 15014\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"pilot\"\n", - " }\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"_/ServiceAccount/istio-system/istio-ingressgateway-service-account\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"IngressGateways\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-ingressgateway-service-account\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " }\n", - " )\r\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"_/ServiceAccount/istio-system/istio-reader-service-account\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcpu = \"10m\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmemory = \"100Mi\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcapabilities = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdrop = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ALL\",\n", - " ]\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = 1337\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = true\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = 1337\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = \"/var/run/secrets/tokens\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-token\"\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = true\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = \"/var/run/secrets/istio-dns\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"local-certs\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = \"/etc/cacerts\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cacerts\"\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = true\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = \"/var/run/secrets/remote\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-kubeconfig\"\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = true\n", - " },\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelector = {}\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroup = 1337\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumes = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0memptyDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmedium = \"Memory\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"local-certs\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-token\"\n", - " \u001B[32m+\u001B[0m \u001B[0mprojected = {\n", - " \u001B[32m+\u001B[0m \u001B[0msources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountToken = {\n", - " \u001B[32m+\u001B[0m \u001B[0maudience = \"istio-ca\"\n", - " \u001B[32m+\u001B[0m \u001B[0mexpirationSeconds = 43200\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = \"istio-token\"\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cacerts\"\n", - " \u001B[32m+\u001B[0m \u001B[0msecret = {\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = true\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = \"cacerts\"\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-kubeconfig\"\n", - " \u001B[32m+\u001B[0m \u001B[0msecret = {\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = true\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = \"istio-kubeconfig\"\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/metadata-exchange-1.10\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"Pilot\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"metadata-exchange-1.10\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/metadata-exchange-1.11\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"Pilot\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"metadata-exchange-1.11\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/metadata-exchange-1.9\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"install.operator.istio.io/owning-resource\" = \"unknown\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator.istio.io/component\" = \"Pilot\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"metadata-exchange-1.9\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode({})\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.metadata_exchange\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/stats-filter-1.10\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"stats-filter-1.10\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdisable_host_header_fallback = true\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdisable_host_header_fallback = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/stats-filter-1.11\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"stats-filter-1.11\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdisable_host_header_fallback = true\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdisable_host_header_fallback = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/stats-filter-1.9\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"stats-filter-1.9\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"upstream_peer.cluster_id\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdisable_host_header_fallback = true\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"upstream_peer.cluster_id\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-metadata-exchange-1.10\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-metadata-exchange-1.10\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-metadata-exchange-1.11\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-metadata-exchange-1.11\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-metadata-exchange-1.9\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-metadata-exchange-1.9\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"CLUSTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {}\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"MERGE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilters = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.metadata_exchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"istio-peer-exchange\"\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-stats-filter-1.10\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-stats-filter-1.10\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.10.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-stats-filter-1.11\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-stats-filter-1.11\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.11.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/tcp-stats-filter-1.9\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio.io/rev\" = \"default\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tcp-stats-filter-1.9\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\r\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_INBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"downstream_peer.cluster_id\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_inbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_inbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"SIDECAR_OUTBOUND\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"upstream_peer.cluster_id\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"NETWORK_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.network.tcp_proxy\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = \"^1\\\\.9.*\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio.stats\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/udpa.type.v1.TypedStruct\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype_url = \"type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/google.protobuf.StringValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mdebug = \"false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdimensions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination_cluster = \"upstream_peer.cluster_id\"\n", - " \u001B[32m+\u001B[0m \u001B[0msource_cluster = \"node.metadata['CLUSTER_ID']\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mstat_prefix = \"istio\"\n", - " }\n", - " )\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroot_id = \"stats_outbound\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocal = {\n", - " \u001B[32m+\u001B[0m \u001B[0minline_string = \"envoy.wasm.stats\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntime = \"envoy.wasm.runtime.null\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvm_id = \"tcp_stats_outbound\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/EnvoyFilter/istio-system/x-forwarded-host\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"EnvoyFilter\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"x-forwarded-host\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = \"HTTP_FILTER\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = \"GATEWAY\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.http_connection_manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.router\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = \"INSERT_BEFORE\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"envoy.filters.http.lua\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtyped_config = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"@type\" = \"type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua\"\n", - " \u001B[32m+\u001B[0m \u001B[0minlineCode = <<-EOT\n", - " function envoy_on_request(request_handle)\n", - " local host = request_handle:headers():get(\":authority\")\n", - " request_handle:headers():add(\"x-forwarded-host\", host)\n", - " end\n", - " EOT\n", - " }\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mworkloadSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"ingressgateway\"\n", - " }\n", - " }\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\r\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"networking.istio.io/Gateway/istio-system/istio-ingressgateway\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Gateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-ingressgateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"ingressgateway\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mservers = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mhosts = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"http\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnumber = 80\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"HTTP\"\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"rbac.authorization.k8s.io/ClusterRole/_/istio-reader-clusterrole-istio-system\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-reader\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-reader-clusterrole-istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"config.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"security.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authentication.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpoints\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pods\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"services\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nodes\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicationcontrollers\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"namespaces\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secrets\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"workloadentries\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apiextensions.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"customresourcedefinitions\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"discovery.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpointslices\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apps\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicasets\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authentication.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenreviews\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authorization.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subjectaccessreviews\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"rbac.authorization.k8s.io/ClusterRole/_/istio-reader-istio-system\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-reader\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istio-reader-istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"config.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"security.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authentication.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpoints\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pods\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"services\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nodes\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicationcontrollers\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"namespaces\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secrets\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"workloadentries\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apiextensions.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"customresourcedefinitions\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"discovery.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpointslices\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apps\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicasets\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authentication.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tokenreviews\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authorization.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"subjectaccessreviews\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"multicluster.x-k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceexports\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-base[\"rbac.authorization.k8s.io/ClusterRole/_/istiod-clusterrole-istio-system\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istiod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"istiod-clusterrole-istio-system\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"admissionregistration.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mutatingwebhookconfigurations\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"admissionregistration.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"validatingwebhookconfigurations\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"config.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"security.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"authentication.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.istio.io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"telemetry.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"workloadentries\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.istio.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"workloadentries/status\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apiextensions.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"customresourcedefinitions\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pods\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"nodes\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"services\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"namespaces\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpoints\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"discovery.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpointslices\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ingresses\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ingressclasses\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ingresses/status\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"configmaps\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0mpaths = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwhen = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of an Istio attribute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnotValues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\r\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-crds[\"apiextensions.k8s.io/CustomResourceDefinition/_/destinationrules.networking.istio.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-crds\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"helm.sh/resource-policy\" = \"keep\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mchart = \"istio\"\n", - " \u001B[32m+\u001B[0m \u001B[0mheritage = \"Tiller\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"destinationrules.networking.istio.io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"networking.istio.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio-io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking-istio-io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"DestinationRule\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"DestinationRuleList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"destinationrules\"\n", - " \u001B[32m+\u001B[0m \u001B[0mshortNames = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"dr\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"destinationrule\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of a service from the service registry\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.host\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Host\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configuration affecting load balancing, outlier detection, etc. See more details at: https://istio.io/docs/reference/config/networking/destination-rule.html\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexportTo = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of namespaces to which this destination rule is exported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of a service from the service registry.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubsets = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the subset.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtrafficPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Traffic policies that apply to this subset.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconnectionPool = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTP connection pool settings.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mh2UpgradePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify if http1.1 connection should be upgraded to http2 for the associated destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DEFAULT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DO_NOT_UPGRADE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"UPGRADE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp1MaxPendingRequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of pending HTTP requests to a destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp2MaxRequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of requests to a backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0midleTimeout = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The idle timeout for upstream connection pool connections.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxRequestsPerConnection = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of requests per connection to a backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxRetries = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0museClientProtocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set to true, client protocol will be preserved while initiating connection to backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Settings common to both HTTP and TCP upstream connections.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconnectTimeout = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCP connection timeout.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxConnections = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of HTTP1 /TCP connections to a destination host.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpKeepalive = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set then set SO_KEEPALIVE on the socket to enable TCP Keepalives.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0minterval = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The time duration between keep-alive probes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprobes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mloadBalancer = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Settings controlling the load balancer algorithms.\"\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"simple\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"consistentHash\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"simple\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"consistentHash\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpCookie = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on HTTP cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to set for the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mttl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Lifetime of the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaderName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on a specific HTTP header.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpQueryParameterName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on a specific HTTP query parameter.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminimumRingSize = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0museSourceIp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on the source IP address.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalityLbSetting = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdistribute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: only one of distribute or failover can be set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Originating locality, '/' separated, e.g.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mto = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Map of upstream localities to traffic distribution weights.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"enable locality load balancing, this is DestinationRule-level and will override mesh wide settings in entirety.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailover = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: only failover or distribute can be set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Originating region.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mto = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msimple = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ROUND_ROBIN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"LEAST_CONN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"RANDOM\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"PASSTHROUGH\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moutlierDetection = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mbaseEjectionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum ejection duration.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutive5xxErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of 5xx errors before a host is ejected from the connection pool.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveGatewayErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of gateway errors before a host is ejected from the connection pool.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveLocalOriginFailures = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minterval = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Time interval between ejection sweep analysis.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxEjectionPercent = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminHealthPercent = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msplitExternalLocalOriginErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Determines whether to distinguish local origin failures from external errors.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportLevelSettings = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Traffic policies specific to individual ports.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconnectionPool = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTP connection pool settings.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mh2UpgradePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify if http1.1 connection should be upgraded to http2 for the associated destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DEFAULT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DO_NOT_UPGRADE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"UPGRADE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp1MaxPendingRequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of pending HTTP requests to a destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp2MaxRequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of requests to a backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0midleTimeout = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The idle timeout for upstream connection pool connections.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxRequestsPerConnection = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of requests per connection to a backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxRetries = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0museClientProtocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set to true, client protocol will be preserved while initiating connection to backend.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Settings common to both HTTP and TCP upstream connections.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconnectTimeout = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCP connection timeout.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxConnections = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of HTTP1 /TCP connections to a destination host.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpKeepalive = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set then set SO_KEEPALIVE on the socket to enable TCP Keepalives.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0minterval = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The time duration between keep-alive probes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprobes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mloadBalancer = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Settings controlling the load balancer algorithms.\"\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"simple\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"consistentHash\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"simple\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpHeaderName\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpCookie\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"useSourceIp\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpQueryParameterName\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"consistentHash\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconsistentHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpCookie = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on HTTP cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to set for the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mttl = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Lifetime of the cookie.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaderName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on a specific HTTP header.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpQueryParameterName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on a specific HTTP query parameter.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminimumRingSize = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0museSourceIp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hash based on the source IP address.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalityLbSetting = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdistribute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: only one of distribute or failover can be set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Originating locality, '/' separated, e.g.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mto = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Map of upstream localities to traffic distribution weights.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menabled = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"enable locality load balancing, this is DestinationRule-level and will override mesh wide settings in entirety.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailover = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: only failover or distribute can be set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Originating region.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mto = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msimple = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ROUND_ROBIN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"LEAST_CONN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"RANDOM\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"PASSTHROUGH\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moutlierDetection = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mbaseEjectionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum ejection duration.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutive5xxErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of 5xx errors before a host is ejected from the connection pool.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveGatewayErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of gateway errors before a host is ejected from the connection pool.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconsecutiveLocalOriginFailures = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minterval = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Time interval between ejection sweep analysis.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxEjectionPercent = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminHealthPercent = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msplitExternalLocalOriginErrors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Determines whether to distinguish local origin failures from external errors.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TLS related settings for connections to the upstream service.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcaCertificates = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientCertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcredentialName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DISABLE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SIMPLE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"MUTUAL\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ISTIO_MUTUAL\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msni = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SNI string to present to the server during TLS handshake.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjectAltNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TLS related settings for connections to the upstream service.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcaCertificates = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mclientCertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcredentialName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DISABLE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SIMPLE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"MUTUAL\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ISTIO_MUTUAL\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msni = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SNI string to present to the server during TLS handshake.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjectAltNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtrafficPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconnectionPool = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTP connection pool settings.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mh2UpgradePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify if http1.1 connection should be upgraded to http2 for the associated destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DEFAULT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DO_NOT_UPGRADE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"UPGRADE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp1MaxPendingRequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maximum number of pending HTTP requests to a destination.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Customizing Envoy configuration generated by Istio. See more details at: https://istio.io/docs/reference/config/networking/envoy-filter.html\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigPatches = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One or more patches with match conditions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapplyTo = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"INVALID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"LISTENER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"FILTER_CHAIN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"NETWORK_FILTER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HTTP_FILTER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ROUTE_CONFIGURATION\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"VIRTUAL_HOST\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"HTTP_ROUTE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"CLUSTER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"EXTENSION_CONFIG\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"BOOTSTRAP\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match on listener/route configuration/cluster.\"\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"listener\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"routeConfiguration\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"listener\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"routeConfiguration\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"cluster\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcluster = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match on envoy cluster attributes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The exact name of the cluster to match.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportNumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The service port for which this cluster was generated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mservice = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The fully qualified service name for this cluster.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubset = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The subset associated with the service.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcontext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The specific config generation context to match on.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ANY\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SIDECAR_INBOUND\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SIDECAR_OUTBOUND\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"GATEWAY\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlistener = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match on envoy listener attributes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterChain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match a specific filter chain in a listener.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapplicationProtocols = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Applies only to sidecars.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdestinationPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The destination_port value used by a filter chain's match condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of a specific filter to apply the patch to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The filter name to match on.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubFilter = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The filter name to match on.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name assigned to the filter chain.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msni = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SNI value used by a filter chain's match condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtransportProtocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Applies only to `SIDECAR_INBOUND` context.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match a specific listener by its name.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportNumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match on properties associated with a proxy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproxyVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrouteConfiguration = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match on envoy HTTP route configuration attributes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgateway = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Route configuration name to match on.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Applicable only for GATEWAY context.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportNumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match a specific route within the virtual host.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maction = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match a route with specific action type.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ANY\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ROUTE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REDIRECT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"DIRECT_RESPONSE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The patch to apply along with the operation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfilterClass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Determines the filter insertion order.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"UNSPECIFIED\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AUTHN\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AUTHZ\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"STATS\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Determines how the patch should be applied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"INVALID\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"MERGE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ADD\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REMOVE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"INSERT_BEFORE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"INSERT_AFTER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"INSERT_FIRST\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REPLACE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The JSON config of the object being patched.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Priority defines the order in which patch sets are applied within a context.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkloadSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-crds[\"apiextensions.k8s.io/CustomResourceDefinition/_/gateways.networking.istio.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-crds\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"helm.sh/resource-policy\" = \"keep\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mchart = \"istio\"\n", - " \u001B[32m+\u001B[0m \u001B[0mheritage = \"Tiller\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"gateways.networking.istio.io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"networking.istio.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio-io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking-istio-io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Gateway\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"GatewayList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"gateways\"\n", - " \u001B[32m+\u001B[0m \u001B[0mshortNames = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gw\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"gateway\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configuration affecting edge load balancer. See more details at: https://istio.io/docs/reference/config/networking/gateway.html\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mservers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of server specifications.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mbind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultEndpoint = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhosts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One or more hosts exposed by this gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An optional name of the server, when set must be unique across all servers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Label assigned to the port.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnumber = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A valid non-negative integer port number.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The protocol exposed on the port.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Set of TLS related options that govern the server's behavior.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcaCertificates = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcipherSuites = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: If specified, only support the specified cipher list.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcredentialName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpsRedirect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxProtocolVersion = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Maximum TLS protocol version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLS_AUTO\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_0\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_1\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_2\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_3\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminProtocolVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Minimum TLS protocol version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLS_AUTO\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_0\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_1\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_2\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TLSV1_3\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"PASSTHROUGH\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SIMPLE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"MUTUAL\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"AUTO_PASSTHROUGH\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ISTIO_MUTUAL\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivateKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `SIMPLE` or `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserverCertificate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"REQUIRED if mode is `SIMPLE` or `MUTUAL`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjectAltNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mverifyCertificateHash = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mverifyCertificateSpki = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REGISTRY_ONLY\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ALLOW_ANY\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkloadSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-crds[\"apiextensions.k8s.io/CustomResourceDefinition/_/telemetries.telemetry.istio.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-crds\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"helm.sh/resource-policy\" = \"keep\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mchart = \"istio\"\n", - " \u001B[32m+\u001B[0m \u001B[0mheritage = \"Tiller\"\n", - " \u001B[32m+\u001B[0m \u001B[0mistio = \"telemetry\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"telemetries.telemetry.istio.io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"telemetry.istio.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio-io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"telemetry-istio-io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Telemetry\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"TelemetryList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"telemetries\"\n", - " \u001B[32m+\u001B[0m \u001B[0mshortNames = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"telemetry\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"telemetry\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Telemetry defines how the telemetry is generated for workloads within a mesh.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessLogging = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisabled = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Controls logging.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproviders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moverrides = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdisabled = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Match allows provides the scope of the override.\"\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metric\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"customMetric\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metric\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"customMetric\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcustomMetric = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Allows free-form specification of a metric.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetric = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One of the well-known Istio Standard Metrics.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"ALL_METRICS\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REQUEST_COUNT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REQUEST_DURATION\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REQUEST_SIZE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"RESPONSE_SIZE\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TCP_OPENED_CONNECTIONS\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TCP_CLOSED_CONNECTIONS\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TCP_SENT_BYTES\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"TCP_RECEIVED_BYTES\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"GRPC_REQUEST_MESSAGES\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"GRPC_RESPONSE_MESSAGES\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Controls which mode of metrics generation is selected: CLIENT and/or SERVER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"CLIENT_AND_SERVER\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"CLIENT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"SERVER\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtagOverrides = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Operation controls whether or not to update/add a tag, or to remove it.\"\n", - " \u001B[32m+\u001B[0m \u001B[0menum = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"UPSERT\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"REMOVE\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value is only considered if the operation is `UPSERT`.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproviders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtracing = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcustomTags = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"literal\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"environment\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"header\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"literal\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\r\n", - " \u001B[32m+\u001B[0m \u001B[0m\"environment\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"header\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0menvironment = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Environment adds the value of an environment variable to each span.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultValue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the environment variable from which to extract the tag value.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mheader = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RequestHeader adds the value of an header from the request to each span.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultValue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the header from which to extract the tag value.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mliteral = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Literal adds the same, hard-coded value to each span.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The tag value to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdisableSpanReporting = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Controls span reporting.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mproviders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrandomSamplingPercentage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"number\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.istio-crds[\"apiextensions.k8s.io/CustomResourceDefinition/_/virtualservices.networking.istio.io\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"istio-crds\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"helm.sh/resource-policy\" = \"keep\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"istio-pilot\"\n", - " \u001B[32m+\u001B[0m \u001B[0mchart = \"istio\"\n", - " \u001B[32m+\u001B[0m \u001B[0mheritage = \"Tiller\"\n", - " \u001B[32m+\u001B[0m \u001B[0mrelease = \"istio\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"virtualservices.networking.istio.io\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"networking.istio.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcategories = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"istio-io\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"networking-istio-io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"VirtualService\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"VirtualServiceList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"virtualservices\"\n", - " \u001B[32m+\u001B[0m \u001B[0mshortNames = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"vs\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"virtualservice\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The names of gateways and sidecars that should apply these routes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.gateways\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Gateways\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The destination hosts to which traffic is being sent\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".spec.hosts\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Hosts\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Configuration affecting label/content routing, sni routing, etc. See more details at: https://istio.io/docs/reference/config/networking/virtual-service.html\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexportTo = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of namespaces to which this virtual service is exported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgateways = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The names of gateways and sidecars that should apply these routes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhosts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The destination hosts to which traffic is being sent.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An ordered list of route rules for HTTP traffic.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcorsPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Cross-Origin Resource Sharing policy (CORS).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mallowCredentials = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnullable = true\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mallowHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mallowMethods = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of HTTP methods allowed to access the resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mallowOrigin = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The list of origins that are allowed to perform CORS requests.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mallowOrigins = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"String patterns that match allowed origins.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexact = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregex = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexposeHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxAge = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdelegate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name specifies the name of the delegate VirtualService.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Namespace specifies the namespace where the delegate VirtualService resides.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfault = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Fault injection policy to apply on HTTP traffic at the client side.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mabort = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpStatus\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"grpcStatus\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"http2Error\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"httpStatus\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"grpcStatus\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"http2Error\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgrpcStatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp2Error = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpStatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTP status code to use to abort the Http request.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpercentage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Percentage of requests to be aborted with the error code provided.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"double\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"number\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdelay = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fixedDelay\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exponentialDelay\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fixedDelay\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exponentialDelay\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexponentialDelay = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfixedDelay = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Add a fixed delay before forwarding the request.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpercent = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Percentage of requests on which the delay will be injected (0-100).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpercentage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Percentage of requests on which the delay will be injected.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"double\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"number\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mheaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mrequest = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mremove = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mset = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresponse = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mremove = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mset = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mauthority = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexact = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregex = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgateways = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Names of gateways where the rule should be applied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mheaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexact = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregex = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mignoreUriCase = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Flag to specify whether the URI matching should be case-insensitive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmethod = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexact = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregex = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name assigned to a match.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the ports on the host that is being addressed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mqueryParams = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moneOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mnot = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"exact\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"prefix\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"regex\",\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexact = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of scope selector requirements by scope of the resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the scope that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"scopeName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A ResourceQuotaScope defines a filter that must match each object tracked by a quota\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ProfileStatus defines the observed state of Profile\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1beta1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Profile is the Schema for the profiles API\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ProfileSpec defines the desired state of Profile\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mowner = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The profile owner\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIGroup holds the API group of the referenced subject. Defaults to \\\"\\\" for ServiceAccount subjects. Defaults to \\\"rbac.authorization.k8s.io\\\" for User and Group subjects.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of object being referenced. Values defined by this API group are \\\"User\\\", \\\"Group\\\", and \\\"ServiceAccount\\\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the object being referenced.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Namespace of the referenced object. If the object kind is non-namespace, such as \\\"User\\\" or \\\"Group\\\", and this value is not empty the Authorizer should report an error.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kind\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mplugins = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Plugin is for customize actions on different platform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-preserve-unknown-fields = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceQuotaSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Resourcequota that will be applied to target namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhard = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of scope selector requirements by scope of the resources.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the scope that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"scopeName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscopes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A ResourceQuotaScope defines a filter that must match each object tracked by a quota\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ProfileStatus defines the observed state of Profile\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = false\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0macceptedNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = []\n", - " \u001B[32m+\u001B[0m \u001B[0mstoredVersions = []\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.profiles[\"apps/Deployment/kubeflow/profiles-deployment\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"profiles\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apps/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-deployment\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"kubeflow\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mreplicas = 1\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"sidecar.istio.io/inject\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainers = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"/access-management\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-cluster-admin\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(ADMIN)\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-userid-header\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(USERID_HEADER)\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-userid-prefix\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(USERID_PREFIX)\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-config-46c7tgh6fd\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = \"public.ecr.aws/j1r0q0g6/notebooks/access-management:v1.5.0\"\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = \"Always\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = \"/metrics\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 8081\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = 30\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = 30\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"kfam\"\n", - " \u001B[32m+\u001B[0m \u001B[0mports = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = 8081\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"kfam-http\"\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " },\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"/manager\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-userid-header\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(USERID_HEADER)\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-userid-prefix\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(USERID_PREFIX)\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"-workload-identity\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"$(WORKLOAD_IDENTITY)\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-config-46c7tgh6fd\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = \"public.ecr.aws/j1r0q0g6/notebooks/profile-controller:v1.5.0\"\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = \"Always\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = \"/metrics\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = 8080\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = 30\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = 30\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"manager\"\n", - " \u001B[32m+\u001B[0m \u001B[0mports = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = 8080\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"manager-http\"\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = \"TCP\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = \"/etc/profile-controller\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"namespace-labels\"\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = true\n", - " },\n", - " ]\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = \"profiles-controller-service-account\"\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumes = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMap = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"namespace-labels-data-4df5t8mdgf\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"namespace-labels\"\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.profiles[\"networking.istio.io/VirtualService/kubeflow/profiles-kfam\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"profiles\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"networking.istio.io/v1alpha3\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"VirtualService\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-kfam\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"kubeflow\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgateways = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow-gateway\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mhosts = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mhttp = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mheaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mrequest = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mx-forwarded-prefix = \"/kfam\"\n", - " }\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatch = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0muri = {\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = \"/kfam/\"\n", - " }\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mrewrite = {\n", - " \u001B[32m+\u001B[0m \u001B[0muri = \"/kfam/\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroute = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mdestination = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = \"profiles-kfam.kubeflow.svc.cluster.local\"\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnumber = 8081\n", - " }\n", - " }\n", - " },\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.profiles[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/profiles-cluster-role-binding\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"profiles\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-cluster-role-binding\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"cluster-admin\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-controller-service-account\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"kubeflow\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.profiles[\"rbac.authorization.k8s.io/Role/kubeflow/profiles-leader-election-role\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"profiles\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"Role\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kustomize.component\" = \"profiles\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"profiles-leader-election-role\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"kubeflow\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinityTerm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A pod affinity term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"podAffinityTerm\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAntiAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpodAffinityTerm = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required. A pod affinity term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mweight = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"podAffinityTerm\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"weight\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequiredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over a set of resources, in this case pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespaces = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \\\"this pod's namespace\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mautomountServiceAccountToken = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A single application container that you want to run within a pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0margs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menv = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of environment variables to set in the container. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvVar represents an environment variable present in a Container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the environment variable. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalueFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Source for the environment variable's value. Cannot be used if value is not empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a ConfigMap.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to select.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a secret in the pod's namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the secret to select from. Must be a valid secret key.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvFromSource represents the source of a set of ConfigMaps\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ConfigMap to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Secret to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0msubPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPathExpr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mountPath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkingDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moverhead = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreemptionPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessGates = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodReadinessGate contains the reference to a pod condition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconditionType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ConditionType refers to a condition in the pod's condition list with matching type.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"conditionType\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrestartPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntimeClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n", - " 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n", - " If unset, the Kubelet will not modify the ownership and permissions of any volume.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroupChangePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified defaults to \\\"Always\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by the containers in this pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msupplementalGroups = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msysctls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctl defines a kernel parameter to be set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msetHostnameAsFQDN = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mshareProcessNamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubdomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the fully qualified Pod hostname will be \\\"...svc.\\\". If not specified, the pod will not have a domainname at all.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationGracePeriodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's tolerations.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerationSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologySpreadConstraints = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxSkew = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. It's a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwhenUnsatisfiable = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assigment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"maxSkew\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"whenUnsatisfiable\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"whenUnsatisfiable\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"map\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mawsElasticBlockStore = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpartition = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumeID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazureDisk = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcachingMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host Caching mode: None, Read Only, Read Write.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdiskName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Name of the data disk in the blob storage\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdiskURI = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The URI the data disk in the blob storage\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"diskName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"diskURI\",\n", - " ]\r\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazureFile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"the name of secret that contains Azure Storage Account Name and Key\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mshareName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Share Name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secretName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"shareName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcephfs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmonitors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretFile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"monitors\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcinder = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: points to a secret object containing parameters used to connect to OpenStack.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumeID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMap = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ConfigMap represents a configMap that should populate this volume\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maps a string key to a path within a volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to project.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its keys must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcsi = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdriver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodePublishSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies a read-only configuration for the volume. Defaults to false (read/write).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeAttributes = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"driver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdownwardAPI = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DownwardAPI represents downward API about the pod that should populate this volume\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Items is a list of downward API volume file\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DownwardAPIVolumeFile represents information to create the file containing the pod field\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0memptyDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmedium = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msizeLimit = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mephemeral = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " Ephemeral represents a volume that is handled by a cluster storage driver (Alpha feature). The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \n", - " Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \n", - " Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \n", - " Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \n", - " A pod can use both types of ephemeral volumes and persistent volumes at the same time.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies a read-only configuration for the volume. Defaults to false (read/write).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeClaimTemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `-` where `` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \n", - " An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \n", - " This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \n", - " Required, must not be nil.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfinalizers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maccessModes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdataSource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is the type of resource being referenced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name is the name of resource being referenced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kind\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label query over volumes to consider for binding.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstorageClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeName is the binding reference to the PersistentVolume backing this claim.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"spec\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfc = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlun = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: FC target lun number\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetWWNs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: FC target worldwide names (WWNs)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwwids = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mflexVolume = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdriver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Driver is the name of the driver to use for this volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Extra command options if any.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"driver\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mflocker = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdatasetName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdatasetUUID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"UUID of the dataset. This is unique identifier of a Flocker dataset\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgcePersistentDisk = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpartition = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpdName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pdName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgitRepo = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdin = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdinOnce = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtty = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeDevices = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevices is the list of block devices to be used by the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevice describes a mapping of a raw block device within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdevicePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"devicePath is the path inside of the container that the device will be mapped to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name must match the name of a persistentVolumeClaim in the pod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"devicePath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Pod volumes to mount into the container's filesystem. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeMount describes a mounting of a Volume within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the container at which the volume should be mounted. Must not contain ':'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPropagation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This must match the Name of a Volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPathExpr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mountPath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkingDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsConfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameservers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodDNSConfigOption defines DNS resolver options of a pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msearches = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableServiceLinks = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mephemeralContainers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0margs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menv = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of environment variables to set in the container. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvVar represents an environment variable present in a Container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the environment variable. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalueFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Source for the environment variable's value. Cannot be used if value is not empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a ConfigMap.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to select.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a secret in the pod's namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the secret to select from. Must be a valid secret key.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvFromSource represents the source of a set of ConfigMaps\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ConfigMap to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Secret to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlifecycle = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Lifecycle is not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpostStart = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreStop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ContainerPort represents a network port in a single container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIP = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What host IP to bind the external port to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"protocol\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"map\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\r\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mallowPrivilegeEscalation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcapabilities = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Added capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdrop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Removed capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivileged = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprocMount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnlyRootFilesystem = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container has a read-only root filesystem. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetPortal = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"iqn\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"lun\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"targetPortal\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnfs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"server\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpersistentVolumeClaim = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mclaimName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Will force the ReadOnly setting in VolumeMounts. Default false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"claimName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mphotonPersistentDisk = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpdID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ID that identifies Photon Controller persistent disk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pdID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mportworxVolume = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeID uniquely identifies a Portworx volume\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumeID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprojected = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Items for all in one resources secrets, configmaps, and downward API\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"list of volume projections\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Projection that may be projected along with other supported volume types\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMap = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"information about the configMap data to project\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maps a string key to a path within a volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to project.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its keys must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdownwardAPI = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"information about the downwardAPI data to project\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Items is a list of DownwardAPIVolume file\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DownwardAPIVolumeFile represents information to create the file containing the pod field\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecret = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"information about the secret data to project\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maps a string key to a path within a volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to project.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountToken = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"information about the serviceAccountToken data to project\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maudience = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mexpirationSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path is the path relative to the mount point of the file to project the token into.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"sources\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mquobyte = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Group to map volume access to Default is no group\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mregistry = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtenant = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User to map volume access to Defaults to serivceaccount user\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolume = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Volume is a string that references an already created Quobyte volume by name.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"registry\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volume\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrbd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkeyring = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmonitors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpool = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"image\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"monitors\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscaleIO = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgateway = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The host address of the ScaleIO API Gateway.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotectionDomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the ScaleIO Protection Domain for the configured storage.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msslEnabled = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Flag to enable/disable SSL communication with Gateway, default false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstorageMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstoragePool = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ScaleIO Storage Pool associated with the protection domain.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msystem = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of the storage system as configured in ScaleIO.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The name of a volume already created in the ScaleIO system that is associated with this volume source.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"gateway\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secretRef\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"system\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecret = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maps a string key to a path within a volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to project.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its keys must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstorageos = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeNamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvsphereVolume = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstoragePolicyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstoragePolicyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Storage Policy Based Management (SPBM) profile name.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path that identifies vSphere volume vmdk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumePath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containers\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"MXReplicaSpecs is map of common.ReplicaType and common.ReplicaSpec specifies the MX replicas to run. For example, { \\\"Scheduler\\\": common.ReplicaSpec, \\\"Server\\\": common.ReplicaSpec, \\\"Worker\\\": common.ReplicaSpec, }\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RunPolicy encapsulates various runtime policies of the distributed training job, for example how to clean up resources and how long the job can stay active.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactiveDeadlineSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mbackoffLimit = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional number of retries before marking this job failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcleanPodPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CleanPodPolicy defines the policy to kill pods after the job completes. Default to Running.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulingPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SchedulingPolicy defines the policy related to scheduling, e.g. gang-scheduling\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mminAvailable = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminResources = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ResourceList is a set of (resource name, quantity) pairs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mqueue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mttlSecondsAfterFinished = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TTLSecondsAfterFinished is the TTL to clean up jobs. It may take extra ReconcilePeriod seconds for the cleanup, since reconcile gets called periodically. Default to infinite.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"jobMode\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxReplicaSpecs\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"JobStatus represents the current observed state of the training Job.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcompletionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Conditions is an array of current observed job conditions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"JobCondition describes the state of the job at a certain point.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Last time the condition transitioned from one status to another.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastUpdateTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The last time this condition was updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A human readable message indicating details about the transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The reason for the condition's last transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the condition, one of True, False, Unknown.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type of job condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastReconcileTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents last time when the job was reconciled. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreplicaStatuses = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReplicaStatus represents the current observed state of the replica.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactive = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of actively running pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailed = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of pods which reached phase Failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\r\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msucceeded = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of pods which reached phase Succeeded.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReplicaStatuses is map of ReplicaType and ReplicaStatus, specifies the status of each replica.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstartTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"conditions\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicaStatuses\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0macceptedNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = []\n", - " \u001B[32m+\u001B[0m \u001B[0mstoredVersions = []\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"apiextensions.k8s.io/CustomResourceDefinition/_/pytorchjobs.kubeflow.org\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"controller-gen.kubebuilder.io/version\" = \"v0.6.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcreationTimestamp = \u001B[90mnull\u001B[0m\u001B[0m\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"pytorchjobs.kubeflow.org\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"kubeflow.org\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"PyTorchJob\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"PyTorchJobList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"pytorchjobs\"\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"pytorchjob\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[-1:].type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PyTorchJob Represents a PyTorchJob resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specification of the desired state of the PyTorchJob.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0melasticPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxReplicas = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas, defaults to null.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxRestarts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetrics = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Metrics contains the specifications which are used to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated with multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the HPA will not be created.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexternal = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetric = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"metric identifies the target metric by name and selector\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name is the name of the given metric\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mselector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtarget = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"target specifies the target value for the given metric\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0maverageUtilization = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0maverageValue = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\r\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"averageValue is the target value of the average of the metric across all relevant pods (as a quantity)\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"type represents whether the metric type is Utilization, Value, or AverageValue\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"value is the target value of the metric (as a quantity).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"metric\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"target\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mobject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescribedObject = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CrossVersionObjectReference contains enough information to let you identify the referred resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"API version of the referent\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kind\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetric = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"metric identifies the target metric by name and selector\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name is the name of the given metric\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreStop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Probes are not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Ports are not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ContainerPort represents a network port in a single container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIP = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What host IP to bind the external port to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Probes are not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\r\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\r\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrestartPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntimeClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n", - " 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n", - " If unset, the Kubelet will not modify the ownership and permissions of any volume.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroupChangePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified defaults to \\\"Always\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by the containers in this pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msupplementalGroups = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msysctls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctl defines a kernel parameter to be set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msetHostnameAsFQDN = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mshareProcessNamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubdomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the fully qualified Pod hostname will be \\\"...svc.\\\". If not specified, the pod will not have a domainname at all.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationGracePeriodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's tolerations.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerationSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologySpreadConstraints = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmaxSkew = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologyKey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. It's a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwhenUnsatisfiable = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assigment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"maxSkew\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"whenUnsatisfiable\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"topologyKey\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"whenUnsatisfiable\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"map\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumes = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mawsElasticBlockStore = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpartition = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumeID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazureDisk = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcachingMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host Caching mode: None, Read Only, Read Write.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdiskName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Name of the data disk in the blob storage\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdiskURI = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The URI the data disk in the blob storage\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"diskName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"diskURI\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mazureFile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"the name of secret that contains Azure Storage Account Name and Key\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mshareName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Share Name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secretName\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"shareName\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcephfs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmonitors = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretFile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"monitors\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcinder = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: points to a secret object containing parameters used to connect to OpenStack.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumeID\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMap = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ConfigMap represents a configMap that should populate this volume\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefaultMode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Maps a string key to a path within a volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to project.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmode = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"path\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its keys must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcsi = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdriver = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodePublishSecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies a read-only configuration for the volume. Defaults to false (read/write).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeNamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvsphereVolume = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstoragePolicyID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstoragePolicyName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Storage Policy Based Management (SPBM) profile name.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path that identifies vSphere volume vmdk\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"volumePath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containers\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A map of PyTorchReplicaType (type) to ReplicaSpec (value). Specifies the PyTorch cluster configuration. For example, { \\\"Master\\\": PyTorchReplicaSpec, \\\"Worker\\\": PyTorchReplicaSpec, }\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RunPolicy encapsulates various runtime policies of the distributed training job, for example how to clean up resources and how long the job can stay active.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactiveDeadlineSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mbackoffLimit = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional number of retries before marking this job failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcleanPodPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CleanPodPolicy defines the policy to kill pods after the job completes. Default to Running.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulingPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SchedulingPolicy defines the policy related to scheduling, e.g. gang-scheduling\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mminAvailable = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminResources = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ResourceList is a set of (resource name, quantity) pairs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mqueue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mttlSecondsAfterFinished = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TTLSecondsAfterFinished is the TTL to clean up jobs. It may take extra ReconcilePeriod seconds for the cleanup, since reconcile gets called periodically. Default to infinite.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchReplicaSpecs\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Most recently observed status of the PyTorchJob. Read-only (modified by the system).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcompletionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Conditions is an array of current observed job conditions.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"JobCondition describes the state of the job at a certain point.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlastTransitionTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Last time the condition transitioned from one status to another.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastUpdateTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The last time this condition was updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmessage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A human readable message indicating details about the transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreason = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The reason for the condition's last transition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Status of the condition, one of True, False, Unknown.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type of job condition.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlastReconcileTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents last time when the job was reconciled. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreplicaStatuses = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReplicaStatus represents the current observed state of the replica.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactive = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of actively running pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailed = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of pods which reached phase Failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchLabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msucceeded = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The number of pods which reached phase Succeeded.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReplicaStatuses is map of ReplicaType and ReplicaStatus, specifies the status of each replica.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstartTime = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"date-time\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"conditions\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"replicaStatuses\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserved = true\n", - " \u001B[32m+\u001B[0m \u001B[0mstorage = true\n", - " \u001B[32m+\u001B[0m \u001B[0msubresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mscale = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelectorPath = \".status.labelSelector\"\n", - " \u001B[32m+\u001B[0m \u001B[0mspecReplicasPath = \".spec.pytorchReplicaSpecs.Worker.replicas\"\n", - " \u001B[32m+\u001B[0m \u001B[0mstatusReplicasPath = \".status.replicaStatuses.Active\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {}\n", - " }\n", - " },\n", - " ]\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstatus = {\n", - " \u001B[32m+\u001B[0m \u001B[0macceptedNames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mconditions = []\n", - " \u001B[32m+\u001B[0m \u001B[0mstoredVersions = []\n", - " }\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"apiextensions.k8s.io/CustomResourceDefinition/_/tfjobs.kubeflow.org\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"apiextensions.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"CustomResourceDefinition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"controller-gen.kubebuilder.io/version\" = \"v0.6.0\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcreationTimestamp = \u001B[90mnull\u001B[0m\u001B[0m\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"tfjobs.kubeflow.org\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgroup = \"kubeflow.org\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"TFJob\"\n", - " \u001B[32m+\u001B[0m \u001B[0mlistKind = \"TFJobList\"\n", - " \u001B[32m+\u001B[0m \u001B[0mplural = \"tfjobs\"\n", - " \u001B[32m+\u001B[0m \u001B[0msingular = \"tfjob\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscope = \"Namespaced\"\n", - " \u001B[32m+\u001B[0m \u001B[0mversions = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalPrinterColumns = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".status.conditions[-1:].type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"State\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mjsonPath = \".metadata.creationTimestamp\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"Age\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"date\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mschema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mopenAPIV3Schema = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TFJob represents a TFJob resource.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specification of the desired state of the TFJob.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0menableDynamicWorker = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A switch to enable dynamic worker\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RunPolicy encapsulates various runtime policies of the distributed training job, for example how to clean up resources and how long the job can stay active.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactiveDeadlineSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mbackoffLimit = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional number of retries before marking this job failed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcleanPodPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"CleanPodPolicy defines the policy to kill pods after the job completes. Default to Running.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulingPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SchedulingPolicy defines the policy related to scheduling, e.g. gang-scheduling\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mminAvailable = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\r\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mminResources = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ResourceList is a set of (resource name, quantity) pairs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClass = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mqueue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mttlSecondsAfterFinished = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TTLSecondsAfterFinished is the TTL to clean up jobs. It may take extra ReconcilePeriod seconds for the cleanup, since reconcile gets called periodically. Default to infinite.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SuccessPolicy defines the policy to mark the TFJob as succeeded. Default to \\\"\\\", using the default rules.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtfReplicaSpecs = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ReplicaSpec is a description of the replica\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mreplicas = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Replicas is the desired number of replicas of the given template. If unspecified, defaults to 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrestartPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Restart policy for all replicas within the job. One of Always, OnFailure, Never and ExitCode. Default to Never.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtemplate = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Template is the object that describes the pod that will be created for this replica. RestartPolicy in PodTemplateSpec will be overide by RestartPolicy in ReplicaSpec\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mannotations = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfinalizers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mspec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mactiveDeadlineSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0maffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's scheduling constraints\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeAffinity = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Describes node affinity scheduling rules for the pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreferredDuringSchedulingIgnoredDuringExecution = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpreference = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector term, associated with the corresponding weight.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of node selector requirements by node's labels.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"operator\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Added capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\r\n", - " \u001B[32m+\u001B[0m \u001B[0mdrop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Removed capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivileged = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprocMount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnlyRootFilesystem = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container has a read-only root filesystem. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstartupProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdin = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdinOnce = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtty = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeDevices = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevices is the list of block devices to be used by the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevice describes a mapping of a raw block device within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdevicePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"devicePath is the path inside of the container that the device will be mapped to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name must match the name of a persistentVolumeClaim in the pod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"devicePath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Pod volumes to mount into the container's filesystem. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeMount describes a mounting of a Volume within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the container at which the volume should be mounted. Must not contain ':'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPropagation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This must match the Name of a Volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPathExpr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mountPath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkingDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsConfig = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mnameservers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodDNSConfigOption defines DNS resolver options of a pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msearches = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdnsPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menableServiceLinks = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mephemeralContainers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0margs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menv = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of environment variables to set in the container. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvVar represents an environment variable present in a Container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the environment variable. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalueFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Source for the environment variable's value. Cannot be used if value is not empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a ConfigMap.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to select.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a secret in the pod's namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the secret to select from. Must be a valid secret key.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ContainerPort represents a network port in a single container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIP = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What host IP to bind the external port to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"protocol\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"map\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlimits = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequests = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mallowPrivilegeEscalation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcapabilities = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Added capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdrop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Removed capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivileged = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprocMount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnlyRootFilesystem = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container has a read-only root filesystem. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\r\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstartupProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdin = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"\r\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdinOnce = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtty = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeDevices = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevices is the list of block devices to be used by the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevice describes a mapping of a raw block device within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdevicePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"devicePath is the path inside of the container that the device will be mapped to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name must match the name of a persistentVolumeClaim in the pod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"devicePath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Pod volumes to mount into the container's filesystem. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeMount describes a mounting of a Volume within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the container at which the volume should be mounted. Must not contain ':'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPropagation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This must match the Name of a Volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPathExpr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mountPath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkingDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mnodeSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moverhead = {\n", - " \u001B[32m+\u001B[0m \u001B[0madditionalProperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreemptionPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriority = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpriorityClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessGates = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PodReadinessGate contains the reference to a pod condition\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconditionType = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ConditionType refers to a condition in the pod's condition list with matching type.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"conditionType\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrestartPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mruntimeClassName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mschedulerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecurityContext = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n", - " 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n", - " If unset, the Kubelet will not modify the ownership and permissions of any volume.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfsGroupChangePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified defaults to \\\"Always\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by the containers in this pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msupplementalGroups = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msysctls = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Sysctl defines a kernel parameter to be set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value of a property to set\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mserviceAccountName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msetHostnameAsFQDN = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mshareProcessNamespace = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubdomain = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the fully qualified Pod hostname will be \\\"...svc.\\\". If not specified, the pod will not have a domainname at all.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationGracePeriodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerations = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, the pod's tolerations.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0meffect = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtolerationSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtopologySpreadConstraints = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabelSelector = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmatchExpressions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"key is the label key that the selector applies to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moperator = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalues = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a secret in the pod's namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the secret to select from. Must be a valid secret key.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvFromSource represents the source of a set of ConfigMaps\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ConfigMap to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Secret to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlifecycle = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpostStart = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreStop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ContainerPort represents a network port in a single container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIP = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What host IP to bind the external port to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"protocol\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"SecurityContext is not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mallowPrivilegeEscalation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcapabilities = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0madd = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Added capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdrop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Removed capabilities\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Capability represent POSIX capabilities type\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprivileged = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprocMount = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnlyRootFilesystem = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container has a read-only root filesystem. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsGroup = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsNonRoot = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int64\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseLinuxOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlevel = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Level is SELinux level label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrole = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Role is a SELinux role label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Type is a SELinux type label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0muser = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"User is a SELinux user label that applies to the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mseccompProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlocalhostProfile = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = <<-EOT\n", - " type indicates which kind of seccomp profile will be applied. Valid options are: \n", - " Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\n", - " EOT\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"type\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mwindowsOptions = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mgmsaCredentialSpecName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrunAsUserName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstartupProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Probes are not allowed for ephemeral containers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdin = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mstdinOnce = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtargetContainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mterminationMessagePolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtty = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeDevices = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevices is the list of block devices to be used by the container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"volumeDevice describes a mapping of a raw block device within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdevicePath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"devicePath is the path inside of the container that the device will be mapped to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"name must match the name of a persistentVolumeClaim in the pod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"devicePath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvolumeMounts = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Pod volumes to mount into the container's filesystem. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"VolumeMount describes a mounting of a Volume within a container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the container at which the volume should be mounted. Must not contain ':'.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mmountPropagation = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"This must match the Name of a Volume.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadOnly = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubPathExpr = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mountPath\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mworkingDir = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostAliases = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhostnames = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Hostnames for the above IP address.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mip = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"IP address of the host file entry.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIPC = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the host's ipc namespace. Optional: Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostNetwork = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPID = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Use the host's pid namespace. Optional: Default to false.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullSecrets = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitContainers = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"A single application container that you want to run within a pod.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0margs = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menv = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of environment variables to set in the container. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvVar represents an environment variable present in a Container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the environment variable. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalueFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Source for the environment variable's value. Cannot be used if value is not empty.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a ConfigMap.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key to select.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfieldPath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path of the field to select in the specified API version.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"fieldPath\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresourceFieldRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerName = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Container name: required for volumes, optional for env vars\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mdivisor = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\"\n", - " \u001B[32m+\u001B[0m \u001B[0mpattern = \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mresource = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Required: resource to select\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"resource\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretKeyRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Selects a key of a secret in the pod's namespace\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mkey = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The key of the secret to select from. Must be a valid secret key.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\r\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret or its key must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"key\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0menvFrom = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"EnvFromSource represents the source of a set of ConfigMaps\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mconfigMapRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The ConfigMap to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the ConfigMap must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprefix = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msecretRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The Secret to select from\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0moptional = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Specify whether the Secret must be defined\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"boolean\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimage = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mimagePullPolicy = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlifecycle = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mpostStart = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpreStop = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mlivenessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mscheme = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Scheme to use for connecting to the host. Defaults to HTTP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0minitialDelaySeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mperiodSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msuccessThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtcpSocket = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Optional: Host name to connect to, defaults to the pod IP.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mport = {\n", - " \u001B[32m+\u001B[0m \u001B[0manyOf = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\r\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " },\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-int-or-string = true\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"port\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtimeoutSeconds = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mports = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"ContainerPort represents a network port in a single container.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcontainerPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostIP = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"What host IP to bind the external port to.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhostPort = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mprotocol = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdefault = \"TCP\"\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-map-keys = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"containerPort\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"protocol\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mx-kubernetes-list-type = \"map\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mreadinessProbe = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mexec = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"One and only one of the following should be specified. Exec specifies the action to take.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mcommand = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mfailureThreshold = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mformat = \"int32\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"integer\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpGet = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPGet specifies the http request to perform.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mhost = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mhttpHeaders = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Custom headers to set in the request. HTTP allows repeated headers.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mitems = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"HTTPHeader describes a custom header to be used in HTTP probes\"\n", - " \u001B[32m+\u001B[0m \u001B[0mproperties = {\n", - " \u001B[32m+\u001B[0m \u001B[0mname = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field name\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mvalue = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"The header field value\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrequired = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"name\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"value\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"object\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"array\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mpath = {\n", - " \u001B[32m+\u001B[0m \u001B[0mdescription = \"Path to access on the HTTP server.\"\n", - " \u001B[32m+\u001B[0m \u001B[0mtype = \"string\"\n", - " }\n", - " ]\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.kubeflow.org/aggregate-to-kubeflow-admin\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"kubeflow-training-admin\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = []\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"rbac.authorization.k8s.io/ClusterRole/_/kubeflow-training-edit\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.kubeflow.org/aggregate-to-kubeflow-edit\" = \"true\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.kubeflow.org/aggregate-to-kubeflow-training-admin\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"kubeflow-training-edit\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow.org\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow.org\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs/status\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"rbac.authorization.k8s.io/ClusterRole/_/kubeflow-training-view\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.kubeflow.org/aggregate-to-kubeflow-view\" = \"true\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"kubeflow-training-view\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow.org\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow.org\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs/status\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"rbac.authorization.k8s.io/ClusterRole/_/training-operator\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"training-operator\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"training-operator\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mrules = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"kubeflow.org\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mpijobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mpijobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"tfjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pytorchjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"mxjobs/status\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"xgboostjobs/status\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"delete\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"get\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"patch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " ]\n", - " },\r\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pods\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"services\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"endpoints\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"events\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"apps\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"extensions\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"deployments\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"pods/exec\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rbac.authorization.k8s.io\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"roles\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"rolebindings\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"configmaps\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"secrets\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"serviceaccounts\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"create\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"list\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"watch\",\n", - " \u001B[32m+\u001B[0m \u001B[0m\"update\",\n", - " ]\n", - " },\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroups = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"scheduling.volcano.sh\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mresources = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"podgroups\",\n", - " ]\n", - " \u001B[32m+\u001B[0m \u001B[0mverbs = [\n", - " \u001B[32m+\u001B[0m \u001B[0m\"*\",\n", - " ]\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.kustomization_resource.training-operator[\"rbac.authorization.k8s.io/ClusterRoleBinding/_/training-operator\"]\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"kustomization_resource\" \"training-operator\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mmanifest\u001B[0m\u001B[0m = jsonencode(\n", - " {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiVersion = \"rbac.authorization.k8s.io/v1\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRoleBinding\"\n", - " \u001B[32m+\u001B[0m \u001B[0mmetadata = {\n", - " \u001B[32m+\u001B[0m \u001B[0mlabels = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapp = \"training-operator\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"training-operator\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0mroleRef = {\n", - " \u001B[32m+\u001B[0m \u001B[0mapiGroup = \"rbac.authorization.k8s.io\"\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ClusterRole\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"training-operator\"\n", - " }\n", - " \u001B[32m+\u001B[0m \u001B[0msubjects = [\n", - " \u001B[32m+\u001B[0m \u001B[0m{\n", - " \u001B[32m+\u001B[0m \u001B[0mkind = \"ServiceAccount\"\n", - " \u001B[32m+\u001B[0m \u001B[0mname = \"training-operator\"\n", - " \u001B[32m+\u001B[0m \u001B[0mnamespace = \"kubeflow\"\n", - " },\n", - " ]\n", - " }\n", - " )\n", - " }\n", - "\n", - "\u001B[1m # module.kubeflow.time_sleep.wait-cert-manager-base\u001B[0m will be created\u001B[0m\u001B[0m\n", - "\u001B[0m \u001B[32m+\u001B[0m\u001B[0m resource \"time_sleep\" \"wait-cert-manager-base\" {\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mcreate_duration\u001B[0m\u001B[0m = \"20s\"\n", - " \u001B[32m+\u001B[0m \u001B[0m\u001B[1m\u001B[0mid\u001B[0m\u001B[0m = (known after apply)\n", - " }\n", - "\n", - "\u001B[0m\u001B[1mPlan:\u001B[0m 416 to add, 0 to change, 0 to destroy.\n", - "\u001B[0m\u001B[90m\n", - "───────────────────────────────────────────────────────────────────────────────\u001B[0m\n", - "\n", - "Note: You didn't use the -out option to save this plan, so Terraform can't\n", - "guarantee to take exactly these actions if you run \"terraform apply\" now.\n" - ] - } - ], - "source": [ - "terraform plan" - ], + "execution_count": null, "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform plan" + ] }, { "cell_type": "markdown", - "source": [], "metadata": { - "collapsed": false, "pycharm": { "name": "#%% md\n" } - } + }, + "source": [] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "terraform apply -auto-approve" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "terraform apply -auto-approve" + ] }, { "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%% md\n" + } + }, "source": [ "## Testing the deployment\n", "\n", "To make sure that the deployment went OK, we can run the following command to test whether we can use Pytorch-Training operators.\n", "\n", "This will create a simple deployment using a Kubeflow pytorch example job." - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%% md\n" - } - } + ] }, { "cell_type": "code", "execution_count": null, - "outputs": [], - "source": [ - "kubectl create -f https://raw.githubusercontent.com/kubeflow/training-operator/master/examples/pytorch/simple.yaml" - ], "metadata": { - "collapsed": false, "pycharm": { "name": "#%%\n" } - } + }, + "outputs": [], + "source": [ + "kubectl create -f https://raw.githubusercontent.com/kubeflow/training-operator/master/examples/pytorch/simple.yaml" + ] } ], "metadata": { @@ -30147,4 +520,4 @@ }, "nbformat": 4, "nbformat_minor": 1 -} \ No newline at end of file +}