From 063a77b131ff3463e2d6b98e6831e9bbad6478c1 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:34:08 -0600 Subject: [PATCH 1/2] Do not enable flyte agent by default in flyte-core helm chart (#3948) * Do not enable flyte agent by default in flyte-core helm chart Signed-off-by: Eduardo Apolinario * make helm Signed-off-by: Eduardo Apolinario * Move definition of agents stanza to comment Signed-off-by: Eduardo Apolinario --------- Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- charts/flyte-core/README.md | 10 +++++----- charts/flyte-core/values.yaml | 18 ++++++++++-------- .../flyte_aws_scheduler_helm_generated.yaml | 9 ++------- .../eks/flyte_helm_dataplane_generated.yaml | 9 ++------- deployment/eks/flyte_helm_generated.yaml | 9 ++------- .../gcp/flyte_helm_dataplane_generated.yaml | 9 ++------- deployment/gcp/flyte_helm_generated.yaml | 9 ++------- 7 files changed, 25 insertions(+), 48 deletions(-) diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index b73aa6136e..0701644d02 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -91,10 +91,10 @@ helm install gateway bitnami/contour -n flyte | configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). | | configmap.datacatalogServer | object | `{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"heartbeat-grace-period-multiplier":3,"max-reservation-heartbeat":"30s","metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}}` | Datacatalog server config | | configmap.domain | object | `{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]}` | Domains configuration for Flyte projects. This enables the specified number of domains across all projects in Flyte. | -| configmap.enabled_plugins.tasks | object | `{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}` | Tasks specific configuration [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#GetConfig) | -| configmap.enabled_plugins.tasks.task-plugins | object | `{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}` | Plugins configuration, [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#TaskPluginConfig) | -| configmap.enabled_plugins.tasks.task-plugins.enabled-plugins | list | `["container","sidecar","k8s-array","agent-service"]` | [Enabled Plugins](https://pkg.go.dev/github.com/lyft/flyteplugins/go/tasks/config#Config). Enable sagemaker*, athena if you install the backend plugins | -| configmap.k8s | object | `{"plugins":{"agent-service":{"defaultGrpcEndpoint":"flyteagent.flyte.svc.cluster.local:8000","supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[],"default-memory":"100Mi"}}}` | Kubernetes specific Flyte configuration | +| configmap.enabled_plugins.tasks | object | `{"task-plugins":{"default-for-task-types":{"container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array"]}}` | Tasks specific configuration [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#GetConfig) | +| configmap.enabled_plugins.tasks.task-plugins | object | `{"default-for-task-types":{"container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array"]}` | Plugins configuration, [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config#TaskPluginConfig) | +| configmap.enabled_plugins.tasks.task-plugins.enabled-plugins | list | `["container","sidecar","k8s-array"]` | [Enabled Plugins](https://pkg.go.dev/github.com/lyft/flyteplugins/go/tasks/config#Config). Enable sagemaker*, athena if you install the backend plugins | +| configmap.k8s | object | `{"plugins":{"k8s":{"default-cpus":"100m","default-env-vars":[],"default-memory":"100Mi"}}}` | Kubernetes specific Flyte configuration | | configmap.k8s.plugins.k8s | object | `{"default-cpus":"100m","default-env-vars":[],"default-memory":"100Mi"}` | Configuration section for all K8s specific plugins [Configuration structure](https://pkg.go.dev/github.com/lyft/flyteplugins/go/tasks/pluginmachinery/flytek8s/config) | | configmap.remoteData.remoteData.region | string | `"us-east-1"` | | | configmap.remoteData.remoteData.scheme | string | `"local"` | | @@ -172,7 +172,7 @@ helm install gateway bitnami/contour -n flyte | flyteagent.additionalVolumes | list | `[]` | Appends additional volumes to the deployment spec. May include template values. | | flyteagent.affinity | object | `{}` | affinity for flyteagent deployment | | flyteagent.configPath | string | `"/etc/flyteagent/config/*.yaml"` | Default regex string for searching configuration files | -| flyteagent.enabled | bool | `true` | | +| flyteagent.enabled | bool | `false` | | | flyteagent.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | flyteagent.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyteagent.image.repository | string | `"ghcr.io/flyteorg/flyteagent"` | Docker image for flyteagent deployment | diff --git a/charts/flyte-core/values.yaml b/charts/flyte-core/values.yaml index 1885347844..a13ab8f324 100755 --- a/charts/flyte-core/values.yaml +++ b/charts/flyte-core/values.yaml @@ -203,7 +203,7 @@ datacatalog: # flyteagent: - enabled: true + enabled: false # -- Replicas count for flyteagent deployment replicaCount: 1 image: @@ -718,12 +718,14 @@ configmap: - container - sidecar - k8s-array - - agent-service + # -- Uncomment to enable agent service + # - agent-service default-for-task-types: container: container sidecar: sidecar container_array: k8s-array - bigquery_query_job_task: agent-service + # -- Uncomment to enable task type that uses Flyte Agent + # bigquery_query_job_task: agent-service # -- Kubernetes specific Flyte configuration k8s: @@ -734,11 +736,11 @@ configmap: # DEFAULT_ENV_VAR: VALUE default-cpus: 100m default-memory: 100Mi - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task - + # Uncomment and modify to include configuration for Flyte Agent + # agent-service: + # defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 + # supportedTaskTypes: + # - bigquery_query_job_task remoteData: remoteData: region: "us-east-1" diff --git a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml index b21187a035..e5643bbe04 100644 --- a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml +++ b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml @@ -482,7 +482,6 @@ data: tasks: task-plugins: default-for-task-types: - bigquery_query_job_task: agent-service container: container container_array: k8s-array sidecar: sidecar @@ -492,10 +491,6 @@ data: - k8s-array k8s.yaml: | plugins: - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task k8s: default-cpus: 100m default-env-vars: [] @@ -1234,7 +1229,7 @@ spec: template: metadata: annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1316,7 +1311,7 @@ spec: app.kubernetes.io/name: flyte-pod-webhook app.kubernetes.io/version: v1.1.106 annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" spec: securityContext: fsGroup: 65534 diff --git a/deployment/eks/flyte_helm_dataplane_generated.yaml b/deployment/eks/flyte_helm_dataplane_generated.yaml index f0e9ea074e..8eede4513a 100644 --- a/deployment/eks/flyte_helm_dataplane_generated.yaml +++ b/deployment/eks/flyte_helm_dataplane_generated.yaml @@ -147,7 +147,6 @@ data: tasks: task-plugins: default-for-task-types: - bigquery_query_job_task: agent-service container: container container_array: k8s-array sidecar: sidecar @@ -157,10 +156,6 @@ data: - k8s-array k8s.yaml: | plugins: - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task k8s: default-cpus: 100m default-env-vars: [] @@ -431,7 +426,7 @@ spec: template: metadata: annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -513,7 +508,7 @@ spec: app.kubernetes.io/name: flyte-pod-webhook app.kubernetes.io/version: v1.1.106 annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" spec: securityContext: fsGroup: 65534 diff --git a/deployment/eks/flyte_helm_generated.yaml b/deployment/eks/flyte_helm_generated.yaml index acd42eaacc..eee8569074 100644 --- a/deployment/eks/flyte_helm_generated.yaml +++ b/deployment/eks/flyte_helm_generated.yaml @@ -513,7 +513,6 @@ data: tasks: task-plugins: default-for-task-types: - bigquery_query_job_task: agent-service container: container container_array: k8s-array sidecar: sidecar @@ -523,10 +522,6 @@ data: - k8s-array k8s.yaml: | plugins: - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task k8s: default-cpus: 100m default-env-vars: [] @@ -1353,7 +1348,7 @@ spec: template: metadata: annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1435,7 +1430,7 @@ spec: app.kubernetes.io/name: flyte-pod-webhook app.kubernetes.io/version: v1.1.106 annotations: - configChecksum: "5aeb1eaeab35d20dc21450af4b772c377f0d5418905bf6eaf170a6e5ebaade1" + configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" spec: securityContext: fsGroup: 65534 diff --git a/deployment/gcp/flyte_helm_dataplane_generated.yaml b/deployment/gcp/flyte_helm_dataplane_generated.yaml index 72b2944e83..41461d8f63 100644 --- a/deployment/gcp/flyte_helm_dataplane_generated.yaml +++ b/deployment/gcp/flyte_helm_dataplane_generated.yaml @@ -147,7 +147,6 @@ data: tasks: task-plugins: default-for-task-types: - bigquery_query_job_task: agent-service container: container container_array: k8s-array sidecar: sidecar @@ -157,10 +156,6 @@ data: - k8s-array k8s.yaml: | plugins: - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task k8s: default-cpus: 100m default-env-vars: [] @@ -439,7 +434,7 @@ spec: template: metadata: annotations: - configChecksum: "33e17b26b38185e0f1ea13266674081f74556c21248f035d3a5cc7dbd32ee37" + configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -520,7 +515,7 @@ spec: app.kubernetes.io/name: flyte-pod-webhook app.kubernetes.io/version: v1.1.106 annotations: - configChecksum: "33e17b26b38185e0f1ea13266674081f74556c21248f035d3a5cc7dbd32ee37" + configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" spec: securityContext: fsGroup: 65534 diff --git a/deployment/gcp/flyte_helm_generated.yaml b/deployment/gcp/flyte_helm_generated.yaml index 30f69599e9..5b700f5a68 100644 --- a/deployment/gcp/flyte_helm_generated.yaml +++ b/deployment/gcp/flyte_helm_generated.yaml @@ -526,7 +526,6 @@ data: tasks: task-plugins: default-for-task-types: - bigquery_query_job_task: agent-service container: container container_array: k8s-array sidecar: sidecar @@ -536,10 +535,6 @@ data: - k8s-array k8s.yaml: | plugins: - agent-service: - defaultGrpcEndpoint: flyteagent.flyte.svc.cluster.local:8000 - supportedTaskTypes: - - bigquery_query_job_task k8s: default-cpus: 100m default-env-vars: [] @@ -1376,7 +1371,7 @@ spec: template: metadata: annotations: - configChecksum: "33e17b26b38185e0f1ea13266674081f74556c21248f035d3a5cc7dbd32ee37" + configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1457,7 +1452,7 @@ spec: app.kubernetes.io/name: flyte-pod-webhook app.kubernetes.io/version: v1.1.106 annotations: - configChecksum: "33e17b26b38185e0f1ea13266674081f74556c21248f035d3a5cc7dbd32ee37" + configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" spec: securityContext: fsGroup: 65534 From e6fa8120dc0be4c46e789270c89fcfef3f6289f9 Mon Sep 17 00:00:00 2001 From: Flyte Bot Date: Fri, 11 Aug 2023 13:53:22 -0700 Subject: [PATCH 2/2] Update Flyte components (#3927) * Update Flyte Components Signed-off-by: Flyte-Bot * Add changelog and change to conf.py Signed-off-by: Eduardo Apolinario * Update sandbox-bundled manifest Signed-off-by: Eduardo Apolinario --------- Signed-off-by: Flyte-Bot Signed-off-by: Eduardo Apolinario Signed-off-by: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Co-authored-by: eapolinario Co-authored-by: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> --- CHANGELOG/CHANGELOG-v1.9.0.md | 129 +++ charts/flyte-binary/README.md | 2 +- charts/flyte-binary/values.yaml | 2 +- charts/flyte-core/README.md | 14 +- charts/flyte-core/values.yaml | 12 +- charts/flyte/README.md | 18 +- charts/flyte/values.yaml | 12 +- .../flyte_aws_scheduler_helm_generated.yaml | 32 +- deployment/eks/flyte_generated.yaml | 24 +- .../flyte_helm_controlplane_generated.yaml | 22 +- .../eks/flyte_helm_dataplane_generated.yaml | 14 +- deployment/eks/flyte_helm_generated.yaml | 36 +- deployment/gcp/flyte_generated.yaml | 24 +- .../flyte_helm_controlplane_generated.yaml | 22 +- .../gcp/flyte_helm_dataplane_generated.yaml | 14 +- deployment/gcp/flyte_helm_generated.yaml | 36 +- .../flyte_sandbox_binary_helm_generated.yaml | 4 +- deployment/sandbox/flyte_generated.yaml | 26 +- deployment/sandbox/flyte_helm_generated.yaml | 36 +- deployment/test/flyte_generated.yaml | 20 +- .../sandbox-bundled/manifests/complete.yaml | 8 +- docker/sandbox-bundled/manifests/dev.yaml | 4 +- go.mod | 61 +- go.sum | 228 ++--- kustomize/overlays/eks/kustomization.yaml | 10 +- kustomize/overlays/gcp/kustomization.yaml | 10 +- kustomize/overlays/sandbox/kustomization.yaml | 10 +- kustomize/overlays/test/kustomization.yaml | 10 +- rsts/conf.py | 2 +- .../generated/datacatalog_config.rst | 182 ++-- .../generated/flyteadmin_config.rst | 958 +++++++++--------- .../generated/flytepropeller_config.rst | 87 +- .../generated/scheduler_config.rst | 958 +++++++++--------- 33 files changed, 1566 insertions(+), 1461 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-v1.9.0.md diff --git a/CHANGELOG/CHANGELOG-v1.9.0.md b/CHANGELOG/CHANGELOG-v1.9.0.md new file mode 100644 index 0000000000..47c62b92a3 --- /dev/null +++ b/CHANGELOG/CHANGELOG-v1.9.0.md @@ -0,0 +1,129 @@ +# Flyte v1.9.0 Release + +In this release we're announcing two experimental features, namely (1) ArrayNode map tasks, and (2) Execution Tags. + + +### ArrayNode map tasks + +ArrayNodes are described more fully in [RFC 3346](https://github.com/flyteorg/flyte/blob/master/rfc/system/3346-array-node.md), but the summary is that ArrayNode map tasks are a drop-in replacement for [regular map tasks](https://docs.flyte.org/projects/cookbook/en/latest/auto_examples/control_flow/map_task.html#map-tasks), the only difference being the submodule used to import the `map_task` function. +More explicitly, let's say you have this code: + +```python +from typing import List +from flytekit import map_task, task, workflow + +@task +def t(a: int) -> int: + ... + +@workflow +def wf(xs: List[int]) -> List[int]: + return map_task(t)(a=xs) +``` + +In order to switch to using array node map tasks you should import map_task from the `flytekit.experimental` module like so: + +```python +from typing import List +from flytekit import task, workflow +from flytekit.experimental import map_task + +@task +def t(a: int) -> int: + ... + +@workflow +def wf(xs: List[int]) -> List[int]: + return map_task(t)(a=xs) +``` + + +### Execution tags + +Execution tags allow users to can discover their executions and other flyte entities more easily, by creating smarter groupings. The feature is described in this [RFC](https://github.com/flyteorg/flyte/blob/master/rfc/system/0001-flyte-execution-tags.md). + +As mentioned before, this feature is shipped in an experimental capacity, the idea being that we're going to incorporate the feedback of the community as we iterate. More work is expected to give prominence to the feature in flyteconsole, in the meanwhile, the feature is supported via [Remote](https://docs.flyte.org/projects/cookbook/en/latest/auto_examples/remote_access/index.html). + + +## Flytekit +* Improve error handling in ShellTask by @pradithya in https://github.com/flyteorg/flytekit/pull/1732 +* use default settings for timeline deck width by @cosmicBboy in https://github.com/flyteorg/flytekit/pull/1748 +* Raise an exception in case of local execution of raw containers tasks by @eapolinario in https://github.com/flyteorg/flytekit/pull/1745 +* Update contributing.rst by @eapolinario in https://github.com/flyteorg/flytekit/pull/1753 +* Skip problematic pyyaml versions by @eapolinario in https://github.com/flyteorg/flytekit/pull/1752 +* Fail CI tests faster by @eapolinario in https://github.com/flyteorg/flytekit/pull/1756 +* Run unit tests on macos-latest by @eapolinario in https://github.com/flyteorg/flytekit/pull/1749 +* add rdzv_configs to kfpytorch elastic by @Nan2018 in https://github.com/flyteorg/flytekit/pull/1751 +* Fix: Disable rich logging handler when env var `FLYTE_SDK_RICH_TRACEBACKS=0` is set by @fg91 in https://github.com/flyteorg/flytekit/pull/1760 +* Throw warning for nested @Task functions by @oliverhu in https://github.com/flyteorg/flytekit/pull/1727 +* Remove dependency on responses by @honnix in https://github.com/flyteorg/flytekit/pull/1762 +* Fix mlflow test error by @pingsutw in https://github.com/flyteorg/flytekit/pull/1766 +* Use phrase 'git revision SHA1' in comments and docs by @DavidMertz in https://github.com/flyteorg/flytekit/pull/1761 +* Dockerize docs requirements generation by @eapolinario in https://github.com/flyteorg/flytekit/pull/1764 +* Restrict grpcio<1.53.1 by @eapolinario in https://github.com/flyteorg/flytekit/pull/1767 +* Array node map task by @eapolinario in https://github.com/flyteorg/flytekit/pull/1640 +* Add agent ctrl-c handler to call the delete function. (Reupload) by @Future-Outlier in https://github.com/flyteorg/flytekit/pull/1782 +* Add tags to execution by @pingsutw in https://github.com/flyteorg/flytekit/pull/1723 + +## Flyteadmin +* Alter ID sequence to bigint by @honnix in https://github.com/flyteorg/flyteadmin/pull/578 +* Remove content md5 requirement by @wild-endeavor in https://github.com/flyteorg/flyteadmin/pull/587 +* Propagate request id on incoming and outgoing requests by @EngHabu in https://github.com/flyteorg/flyteadmin/pull/582 +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flyteadmin/pull/589 +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flyteadmin/pull/594 +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flyteadmin/pull/596 +* Bumping flytestdlib by @gvashishtha in https://github.com/flyteorg/flyteadmin/pull/597 +* Flyte Execution tags by @pingsutw in https://github.com/flyteorg/flyteadmin/pull/571 + +## Flyteplugins +* Add support for using task execution ID fields in log URI templates by @jeevb in https://github.com/flyteorg/flyteplugins/pull/372 +* Fix generate check in CI by @jeevb in https://github.com/flyteorg/flyteplugins/pull/377 +* Remove welcomebot from boilerplate by @eapolinario in https://github.com/flyteorg/flyteplugins/pull/375 +* Carry over hash value for all literal types in remote caching by @nicholasjng in https://github.com/flyteorg/flyteplugins/pull/378 +* Send task execution metadata to out-core plugin by @honnix in https://github.com/flyteorg/flyteplugins/pull/369 +* Support gRPC config for agent-service plugin by @honnix in https://github.com/flyteorg/flyteplugins/pull/368 +* Use agent as name where it fits by @honnix in https://github.com/flyteorg/flyteplugins/pull/381 +* Fix deletion of elastic task resource requests by @fg91 in https://github.com/flyteorg/flyteplugins/pull/379 + +## Flytepropeller +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flytepropeller/pull/591 +* fixing max parallelism by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/594 +* Updated flytestdlib 1.0.20 by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/593 +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flytepropeller/pull/597 +* Instrument ArrayNode by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/550 +* make singular unions castable to their underlying type by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/599 +* correct propagation of launchplan start error by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/598 +* Bumping flytestdlib and stow versions by @gvashishtha in https://github.com/flyteorg/flytepropeller/pull/602 +* Update boilerplate version by @flyte-bot in https://github.com/flyteorg/flytepropeller/pull/601 +* Bump flyteplugins to 1.1.15 by @eapolinario in https://github.com/flyteorg/flytepropeller/pull/603 +* updated flyteplugins to 1.1.16 by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/604 + +## Flyteconsole +* feat: Add localStorage for selected Project/Domain by @jsonporter in https://github.com/flyteorg/flyteconsole/pull/774 +* Fix project selector failing test by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/780 +* fix: node executions list going blank by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/788 +* fix: launch form fixes by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/785 +* chore: fix 404 due to bad state by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/797 +* Fix: Launch Form fixes by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/798 +* fix: map tasks should report caching status accurately by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/800 +* feat: add support from structured datasets by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/801 +* Top level masonry refactor by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/771 +* fix: Tasks status out of sync by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/802 +* chore: fix test_coverage by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/803 +* Fix: breadcrumb feature flag priority order by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/804 +* chore: fix yarn.lock by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/805 +* fix: releases by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/806 +* chore: fix release retry by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/807 +* fix: specify node18, semantic release with exec and git plugins by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/808 +* fix: commit linter running on generated messages by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/810 +* chore: remove release git step by @FrankFlitton in https://github.com/flyteorg/flyteconsole/pull/811 +* fix: union value handling in launch form by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/812 + +## New Contributors +* @Nan2018 made their first contribution in https://github.com/flyteorg/flytekit/pull/1751 +* @oliverhu made their first contribution in https://github.com/flyteorg/flytekit/pull/1727 +* @DavidMertz made their first contribution in https://github.com/flyteorg/flytekit/pull/1761 +* @Future-Outlier made their first contribution in https://github.com/flyteorg/flytekit/pull/1782 +* @gvashishtha made their first contribution in https://github.com/flyteorg/flyteadmin/pull/597 +* @nicholasjng made their first contribution in https://github.com/flyteorg/flyteplugins/pull/378 +* @gvashishtha made their first contribution in https://github.com/flyteorg/flytepropeller/pull/602 diff --git a/charts/flyte-binary/README.md b/charts/flyte-binary/README.md index c307939fe7..522764e1d6 100644 --- a/charts/flyte-binary/README.md +++ b/charts/flyte-binary/README.md @@ -32,7 +32,7 @@ Chart for basic single Flyte executable deployment | configuration.auth.oidc.clientId | string | `""` | | | configuration.auth.oidc.clientSecret | string | `""` | | | configuration.co-pilot.image.repository | string | `"cr.flyte.org/flyteorg/flytecopilot"` | | -| configuration.co-pilot.image.tag | string | `"v0.0.30"` | | +| configuration.co-pilot.image.tag | string | `"v0.0.33"` | | | configuration.database.dbname | string | `"flyte"` | | | configuration.database.host | string | `"127.0.0.1"` | | | configuration.database.options | string | `"sslmode=disable"` | | diff --git a/charts/flyte-binary/values.yaml b/charts/flyte-binary/values.yaml index 9d1de4f6b0..88aa3f1dcf 100644 --- a/charts/flyte-binary/values.yaml +++ b/charts/flyte-binary/values.yaml @@ -149,7 +149,7 @@ configuration: # repository CoPilot sidecar image repository repository: cr.flyte.org/flyteorg/flytecopilot # FLYTECOPILOT_IMAGE # tag CoPilot sidecar image tag - tag: v0.0.30 # FLYTECOPILOT_TAG + tag: v0.0.33 # FLYTECOPILOT_TAG # agentService Flyte Agent configuration agentService: {} # Uncomment and modify to include configuration for Flyte Agent diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index 0701644d02..599db9349c 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -84,8 +84,8 @@ helm install gateway bitnami/contour -n flyte | configmap.clusters.clusterConfigs | list | `[]` | | | configmap.clusters.labelClusterMap | object | `{}` | | | configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI | -| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | -| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | +| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | +| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | | configmap.core | object | `{"manager":{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"},"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration | | configmap.core.manager | object | `{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/manager/config#Config). | | configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). | @@ -119,7 +119,7 @@ helm install gateway bitnami/contour -n flyte | datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| datacatalog.image.tag | string | `"v1.0.48"` | Docker image tag | +| datacatalog.image.tag | string | `"v1.0.51"` | Docker image tag | | datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | datacatalog.priorityClassName | string | `""` | Sets priorityClassName for datacatalog pod(s). | @@ -151,7 +151,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command | | flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | | | flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyteadmin.image.tag | string | `"v1.1.110"` | | +| flyteadmin.image.tag | string | `"v1.1.118"` | | | flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -196,7 +196,7 @@ helm install gateway bitnami/contour -n flyte | flyteconsole.ga.tracking_id | string | `"G-0QW4DJWJ20"` | | | flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | | | flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | -| flyteconsole.image.tag | string | `"v1.8.5"` | | +| flyteconsole.image.tag | string | `"v1.9.2"` | | | flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | | flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods | | flyteconsole.priorityClassName | string | `""` | Sets priorityClassName for flyte console pod(s). | @@ -216,7 +216,7 @@ helm install gateway bitnami/contour -n flyte | flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | | | flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flytepropeller.image.tag | string | `"v1.1.106"` | | +| flytepropeller.image.tag | string | `"v1.1.116"` | | | flytepropeller.manager | bool | `false` | | | flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | @@ -236,7 +236,7 @@ helm install gateway bitnami/contour -n flyte | flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flytescheduler.image.tag | string | `"v1.1.110"` | Docker image tag | +| flytescheduler.image.tag | string | `"v1.1.118"` | Docker image tag | | flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flytescheduler.priorityClassName | string | `""` | Sets priorityClassName for flyte scheduler pod(s). | diff --git a/charts/flyte-core/values.yaml b/charts/flyte-core/values.yaml index a13ab8f324..187d4889f4 100755 --- a/charts/flyte-core/values.yaml +++ b/charts/flyte-core/values.yaml @@ -16,7 +16,7 @@ flyteadmin: image: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE - tag: v1.1.110 # FLYTEADMIN_TAG + tag: v1.1.118 # FLYTEADMIN_TAG pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables # @@ -97,7 +97,7 @@ flytescheduler: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.1.110 # FLYTESCHEDULER_TAG + tag: v1.1.118 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -151,7 +151,7 @@ datacatalog: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE # -- Docker image tag - tag: v1.0.48 # DATACATALOG_TAG + tag: v1.0.51 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -274,7 +274,7 @@ flytepropeller: image: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE - tag: v1.1.106 # FLYTEPROPELLER_TAG + tag: v1.1.116 # FLYTEPROPELLER_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment resources: @@ -332,7 +332,7 @@ flyteconsole: image: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE - tag: v1.8.5 # FLYTECONSOLE_TAG + tag: v1.9.2 # FLYTECONSOLE_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteconsole deployment resources: @@ -657,7 +657,7 @@ configmap: # -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) co-pilot: name: flyte-copilot- - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 # FLYTECOPILOT_IMAGE + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 # FLYTECOPILOT_IMAGE start-timeout: 30s # -- Core propeller configuration diff --git a/charts/flyte/README.md b/charts/flyte/README.md index 4a361c612b..18f7c25fde 100644 --- a/charts/flyte/README.md +++ b/charts/flyte/README.md @@ -71,7 +71,7 @@ helm upgrade -f values-sandbox.yaml flyte . | contour.tolerations | list | `[]` | tolerations for Contour deployment | | daskoperator | object | `{"enabled":false}` | Optional: Dask Plugin using the Dask Operator | | daskoperator.enabled | bool | `false` | - enable or disable the dask operator deployment installation | -| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultGrpcEndpoint":"flyteagent.flyte.svc.cluster.local:8000","supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.0.48"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.1.110"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteagent":{"additionalContainers":[],"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyteagent/config/*.yaml","enabled":true,"extraArgs":{},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/flyteorg/flyteagent","tag":"1.6.2b1"},"nodeSelector":{},"podAnnotations":{},"priorityClassName":"","replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.8.5"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.1.106"},"manager":false,"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.1.110"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | +| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultGrpcEndpoint":"flyteagent.flyte.svc.cluster.local:8000","supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.0.51"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.1.118"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteagent":{"additionalContainers":[],"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyteagent/config/*.yaml","enabled":true,"extraArgs":{},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/flyteorg/flyteagent","tag":"1.6.2b1"},"nodeSelector":{},"podAnnotations":{},"priorityClassName":"","replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.9.2"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.1.116"},"manager":false,"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.1.118"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | | flyte.cluster_resource_manager | object | `{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]}` | Configuration for the Cluster resource manager component. This is an optional component, that enables automatic cluster configuration. This is useful to set default quotas, manage namespaces etc that map to a project/domain | | flyte.cluster_resource_manager.config.cluster_resources | object | `{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}` | ClusterResource parameters Refer to the [structure](https://pkg.go.dev/github.com/lyft/flyteadmin@v0.3.37/pkg/runtime/interfaces#ClusterResourceConfig) to customize. | | flyte.cluster_resource_manager.config.cluster_resources.standaloneDeployment | bool | `false` | Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints | @@ -91,15 +91,15 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.common.ingress.separateGrpcIngressAnnotations | object | `{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"}` | - Extra Ingress annotations applied only to the GRPC ingress. Only makes sense if `separateGrpcIngress` is enabled. | | flyte.common.ingress.tls | object | `{"enabled":false}` | - TLS Settings | | flyte.common.ingress.webpackHMR | bool | `true` | - Enable or disable HMR route to flyteconsole. This is useful only for frontend development. | -| flyte.configmap | object | `{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultGrpcEndpoint":"flyteagent.flyte.svc.cluster.local:8000","supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}}` | ----------------------------------------------------------------- CONFIGMAPS SETTINGS | +| flyte.configmap | object | `{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultGrpcEndpoint":"flyteagent.flyte.svc.cluster.local:8000","supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}}` | ----------------------------------------------------------------- CONFIGMAPS SETTINGS | | flyte.configmap.adminServer | object | `{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}}` | FlyteAdmin server configuration | | flyte.configmap.adminServer.auth | object | `{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}}` | Authentication configuration | | flyte.configmap.adminServer.server.security.secure | bool | `false` | Controls whether to serve requests over SSL/TLS. | | flyte.configmap.adminServer.server.security.useAuth | bool | `false` | Controls whether to enforce authentication. Follow the guide in https://docs.flyte.org/ on how to setup authentication. | | flyte.configmap.catalog | object | `{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}}` | Catalog Client configuration [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/catalog#Config) Additional advanced Catalog configuration [here](https://pkg.go.dev/github.com/lyft/flyteplugins/go/tasks/pluginmachinery/catalog#Config) | | flyte.configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI | -| flyte.configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | -| flyte.configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.32","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | +| flyte.configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | +| flyte.configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.33","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | | flyte.configmap.core | object | `{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration | | flyte.configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). | | flyte.configmap.datacatalogServer | object | `{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}}` | Datacatalog server config | @@ -120,7 +120,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.datacatalog.configPath | string | `"/etc/datacatalog/config/*.yaml"` | Default regex string for searching configuration files | | flyte.datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| flyte.datacatalog.image.tag | string | `"v1.0.48"` | Docker image tag | +| flyte.datacatalog.image.tag | string | `"v1.0.51"` | Docker image tag | | flyte.datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | flyte.datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | flyte.datacatalog.replicaCount | int | `1` | Replicas count for Datacatalog deployment | @@ -136,7 +136,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flyteadmin.env | list | `[]` | Additional flyteadmin container environment variables e.g. SendGrid's API key - name: SENDGRID_API_KEY value: "" e.g. secret environment variable (you can combine it with .additionalVolumes): - name: SENDGRID_API_KEY valueFrom: secretKeyRef: name: sendgrid-secret key: api_key | | flyte.flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyte.flyteadmin.image.tag | string | `"v1.1.110"` | Docker image tag | +| flyte.flyteadmin.image.tag | string | `"v1.1.118"` | Docker image tag | | flyte.flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyte.flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyte.flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -171,7 +171,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flyteconsole.affinity | object | `{}` | affinity for Flyteconsole deployment | | flyte.flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | -| flyte.flyteconsole.image.tag | string | `"v1.8.5"` | Docker image tag | +| flyte.flyteconsole.image.tag | string | `"v1.9.2"` | Docker image tag | | flyte.flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | | flyte.flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods | | flyte.flyteconsole.replicaCount | int | `1` | Replicas count for Flyteconsole deployment | @@ -182,7 +182,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytepropeller.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flyte.flytepropeller.image.tag | string | `"v1.1.106"` | Docker image tag | +| flyte.flytepropeller.image.tag | string | `"v1.1.116"` | Docker image tag | | flyte.flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flyte.flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | | flyte.flytepropeller.replicaCount | int | `1` | Replicas count for Flytepropeller deployment | @@ -196,7 +196,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flyte.flytescheduler.image.tag | string | `"v1.1.110"` | Docker image tag | +| flyte.flytescheduler.image.tag | string | `"v1.1.118"` | Docker image tag | | flyte.flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flyte.flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flyte.flytescheduler.resources | object | `{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}}` | Default resources requests and limits for Flytescheduler deployment | diff --git a/charts/flyte/values.yaml b/charts/flyte/values.yaml index c65b80b8fd..602bef6e44 100755 --- a/charts/flyte/values.yaml +++ b/charts/flyte/values.yaml @@ -16,7 +16,7 @@ flyte: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE # -- Docker image tag - tag: v1.1.110 # FLYTEADMIN_TAG + tag: v1.1.118 # FLYTEADMIN_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables @@ -84,7 +84,7 @@ flyte: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.1.110 # FLYTESCHEDULER_TAG + tag: v1.1.118 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -129,7 +129,7 @@ flyte: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE # -- Docker image tag - tag: v1.0.48 # DATACATALOG_TAG + tag: v1.0.51 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -178,7 +178,7 @@ flyte: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE # -- Docker image tag - tag: v1.1.106 # FLYTEPROPELLER_TAG + tag: v1.1.116 # FLYTEPROPELLER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment @@ -283,7 +283,7 @@ flyte: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE # -- Docker image tag - tag: v1.8.5 # FLYTECONSOLE_TAG + tag: v1.9.2 # FLYTECONSOLE_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteconsole deployment @@ -531,7 +531,7 @@ flyte: # -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) co-pilot: name: flyte-copilot- - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 # FLYTECOPILOT_IMAGE + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 # FLYTECOPILOT_IMAGE start-timeout: 30s # -- Core propeller configuration diff --git a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml index e5643bbe04..4400fb54e9 100644 --- a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml +++ b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml @@ -429,7 +429,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -868,7 +868,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -885,7 +885,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -899,7 +899,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -912,7 +912,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -935,7 +935,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1036,7 +1036,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1089,7 +1089,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1156,7 +1156,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1170,7 +1170,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1229,7 +1229,7 @@ spec: template: metadata: annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1255,7 +1255,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1309,9 +1309,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" spec: securityContext: fsGroup: 65534 @@ -1320,7 +1320,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1343,7 +1343,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_generated.yaml b/deployment/eks/flyte_generated.yaml index 429fae2399..227235aa3a 100644 --- a/deployment/eks/flyte_generated.yaml +++ b/deployment/eks/flyte_generated.yaml @@ -8640,7 +8640,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -8663,7 +8663,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8724,7 +8724,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8751,7 +8751,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8799,7 +8799,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8846,7 +8846,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8863,7 +8863,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8877,7 +8877,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8897,7 +8897,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8951,7 +8951,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.8.5 + image: cr.flyte.org/flyteorg/flyteconsole:v1.9.2 name: flyteconsole ports: - containerPort: 8080 @@ -9002,7 +9002,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9270,7 +9270,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/eks/flyte_helm_controlplane_generated.yaml b/deployment/eks/flyte_helm_controlplane_generated.yaml index 37f734d7f5..6861dfe5d9 100644 --- a/deployment/eks/flyte_helm_controlplane_generated.yaml +++ b/deployment/eks/flyte_helm_controlplane_generated.yaml @@ -574,7 +574,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -591,7 +591,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -605,7 +605,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -618,7 +618,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -641,7 +641,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -742,7 +742,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -795,7 +795,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -862,7 +862,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -876,7 +876,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -952,7 +952,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -968,7 +968,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/eks/flyte_helm_dataplane_generated.yaml b/deployment/eks/flyte_helm_dataplane_generated.yaml index 8eede4513a..7972066f6f 100644 --- a/deployment/eks/flyte_helm_dataplane_generated.yaml +++ b/deployment/eks/flyte_helm_dataplane_generated.yaml @@ -94,7 +94,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -426,7 +426,7 @@ spec: template: metadata: annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -452,7 +452,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -506,9 +506,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" spec: securityContext: fsGroup: 65534 @@ -517,7 +517,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -540,7 +540,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_helm_generated.yaml b/deployment/eks/flyte_helm_generated.yaml index eee8569074..72d7f652ac 100644 --- a/deployment/eks/flyte_helm_generated.yaml +++ b/deployment/eks/flyte_helm_generated.yaml @@ -460,7 +460,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -899,7 +899,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -916,7 +916,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -930,7 +930,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -943,7 +943,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -966,7 +966,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1067,7 +1067,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1120,7 +1120,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1187,7 +1187,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1201,7 +1201,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1277,7 +1277,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1293,7 +1293,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1348,7 +1348,7 @@ spec: template: metadata: annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1374,7 +1374,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1428,9 +1428,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "4ba4974b5cb243e068ebba9501891f71b52aada9c279a0ba7b6e2943abcc7f6" + configChecksum: "a7e3d3a1b6ebefd77df6b03b569a819d21831e1a837865e61cfec358e9a165f" spec: securityContext: fsGroup: 65534 @@ -1439,7 +1439,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1462,7 +1462,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_generated.yaml b/deployment/gcp/flyte_generated.yaml index 5b4f682d23..68afa9aee7 100644 --- a/deployment/gcp/flyte_generated.yaml +++ b/deployment/gcp/flyte_generated.yaml @@ -8682,7 +8682,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -8705,7 +8705,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8766,7 +8766,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8793,7 +8793,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8841,7 +8841,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8888,7 +8888,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8905,7 +8905,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8919,7 +8919,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8939,7 +8939,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8993,7 +8993,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.8.5 + image: cr.flyte.org/flyteorg/flyteconsole:v1.9.2 name: flyteconsole ports: - containerPort: 8080 @@ -9044,7 +9044,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9312,7 +9312,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/gcp/flyte_helm_controlplane_generated.yaml b/deployment/gcp/flyte_helm_controlplane_generated.yaml index 0bef2c2e66..5dd24056e2 100644 --- a/deployment/gcp/flyte_helm_controlplane_generated.yaml +++ b/deployment/gcp/flyte_helm_controlplane_generated.yaml @@ -589,7 +589,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -606,7 +606,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -620,7 +620,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -633,7 +633,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -656,7 +656,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -757,7 +757,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -810,7 +810,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -877,7 +877,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -891,7 +891,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -967,7 +967,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -983,7 +983,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/gcp/flyte_helm_dataplane_generated.yaml b/deployment/gcp/flyte_helm_dataplane_generated.yaml index 41461d8f63..07748d08e4 100644 --- a/deployment/gcp/flyte_helm_dataplane_generated.yaml +++ b/deployment/gcp/flyte_helm_dataplane_generated.yaml @@ -94,7 +94,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -434,7 +434,7 @@ spec: template: metadata: annotations: - configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" + configChecksum: "db2611b8cf44cae2a7ea60b17969e7f6f613c765279c4ac475be76f5046290f" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -459,7 +459,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -513,9 +513,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" + configChecksum: "db2611b8cf44cae2a7ea60b17969e7f6f613c765279c4ac475be76f5046290f" spec: securityContext: fsGroup: 65534 @@ -524,7 +524,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -547,7 +547,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_helm_generated.yaml b/deployment/gcp/flyte_helm_generated.yaml index 5b700f5a68..ce2cff4b1a 100644 --- a/deployment/gcp/flyte_helm_generated.yaml +++ b/deployment/gcp/flyte_helm_generated.yaml @@ -473,7 +473,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -922,7 +922,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -939,7 +939,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -953,7 +953,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -966,7 +966,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -989,7 +989,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1090,7 +1090,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1143,7 +1143,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1210,7 +1210,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1224,7 +1224,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1300,7 +1300,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1316,7 +1316,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1371,7 +1371,7 @@ spec: template: metadata: annotations: - configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" + configChecksum: "db2611b8cf44cae2a7ea60b17969e7f6f613c765279c4ac475be76f5046290f" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1396,7 +1396,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1450,9 +1450,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "d79d5b7a6b0475a27cdd4b85f848f0be4bfed0430ec68184d4c165acf0e8329" + configChecksum: "db2611b8cf44cae2a7ea60b17969e7f6f613c765279c4ac475be76f5046290f" spec: securityContext: fsGroup: 65534 @@ -1461,7 +1461,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1484,7 +1484,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml index aa26a699f3..a99bc9c6fa 100644 --- a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml +++ b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml @@ -115,7 +115,7 @@ data: stackdriver-enabled: false k8s: co-pilot: - image: "cr.flyte.org/flyteorg/flytecopilot:v0.0.30" + image: "cr.flyte.org/flyteorg/flytecopilot:v0.0.33" k8s-array: logs: config: @@ -357,7 +357,7 @@ spec: app.kubernetes.io/instance: flyte app.kubernetes.io/component: flyte-binary annotations: - checksum/configuration: ee7f2b8f30de7a3b54b5d3939ae877f8df9564627b84aaeed56d11d9f2fb2434 + checksum/configuration: 3a6da0d987dcab9f9e03a74a9300098f001c51c6407662e71dd96603f14ad068 checksum/configuration-secret: d5d93f4e67780b21593dc3799f0f6682aab0765e708e4020939975d14d44f929 checksum/cluster-resource-templates: 7dfa59f3d447e9c099b8f8ffad3af466fecbc9cf9f8c97295d9634254a55d4ae spec: diff --git a/deployment/sandbox/flyte_generated.yaml b/deployment/sandbox/flyte_generated.yaml index 432c5f2faa..cac33303fd 100644 --- a/deployment/sandbox/flyte_generated.yaml +++ b/deployment/sandbox/flyte_generated.yaml @@ -2785,7 +2785,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -2803,7 +2803,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -2864,7 +2864,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -2894,7 +2894,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -2945,7 +2945,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -2971,7 +2971,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources-goroutine volumeMounts: @@ -3014,7 +3014,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -3030,7 +3030,7 @@ spec: - seed-projects - flytesnacks - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -3044,7 +3044,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -3064,7 +3064,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -3118,7 +3118,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.8.5 + image: cr.flyte.org/flyteorg/flyteconsole:v1.9.2 name: flyteconsole ports: - containerPort: 8080 @@ -3169,7 +3169,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -3560,7 +3560,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/sandbox/flyte_helm_generated.yaml b/deployment/sandbox/flyte_helm_generated.yaml index ba0ba5b908..e38b7a0e76 100644 --- a/deployment/sandbox/flyte_helm_generated.yaml +++ b/deployment/sandbox/flyte_helm_generated.yaml @@ -597,7 +597,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v0.0.32 + image: cr.flyte.org/flyteorg/flytecopilot:v0.0.33 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -6745,7 +6745,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -6761,7 +6761,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -6774,7 +6774,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6786,7 +6786,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -6809,7 +6809,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -6947,7 +6947,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.110" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.118" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6997,7 +6997,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.5" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.9.2" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -7062,7 +7062,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -7075,7 +7075,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.0.48" + image: "cr.flyte.org/flyteorg/datacatalog:v1.0.51" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -7141,7 +7141,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -7156,7 +7156,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.110" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.118" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -7208,7 +7208,7 @@ spec: template: metadata: annotations: - configChecksum: "b7f9a0fa68b94c02a3815d28c3d6c4b15661a67166f2988bd99a248ba6ada25" + configChecksum: "444f5d76e425ccbd75754da7b762b002bdef2ca8847f6a10041c9c3b1d9748a" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -7233,7 +7233,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -7280,9 +7280,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.106 + app.kubernetes.io/version: v1.1.116 annotations: - configChecksum: "b7f9a0fa68b94c02a3815d28c3d6c4b15661a67166f2988bd99a248ba6ada25" + configChecksum: "444f5d76e425ccbd75754da7b762b002bdef2ca8847f6a10041c9c3b1d9748a" spec: securityContext: fsGroup: 65534 @@ -7291,7 +7291,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -7314,7 +7314,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.106" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.116" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/test/flyte_generated.yaml b/deployment/test/flyte_generated.yaml index 389183dc84..ea1954bee0 100644 --- a/deployment/test/flyte_generated.yaml +++ b/deployment/test/flyte_generated.yaml @@ -645,7 +645,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -663,7 +663,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v1.0.48 + image: cr.flyte.org/flyteorg/datacatalog:v1.0.51 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -724,7 +724,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -751,7 +751,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -799,7 +799,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -854,7 +854,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -870,7 +870,7 @@ spec: - seed-projects - flytetester - flytesnacks - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -884,7 +884,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -904,7 +904,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.110 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -972,7 +972,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.106 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116 imagePullPolicy: IfNotPresent name: flytepropeller ports: diff --git a/docker/sandbox-bundled/manifests/complete.yaml b/docker/sandbox-bundled/manifests/complete.yaml index 4ad09b1454..3e38ad150b 100644 --- a/docker/sandbox-bundled/manifests/complete.yaml +++ b/docker/sandbox-bundled/manifests/complete.yaml @@ -456,7 +456,7 @@ data: stackdriver-enabled: false k8s: co-pilot: - image: "cr.flyte.org/flyteorg/flytecopilot:v0.0.30" + image: "cr.flyte.org/flyteorg/flytecopilot:v0.0.33" k8s-array: logs: config: @@ -784,7 +784,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: R3NIMExSV1VDTlh4Qlh3eA== + haSharedSecret: VWVseW5KSmVXU1YzVlNJTw== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1182,7 +1182,7 @@ spec: metadata: annotations: checksum/cluster-resource-templates: 6fd9b172465e3089fcc59f738b92b8dc4d8939360c19de8ee65f68b0e7422035 - checksum/configuration: 61fd030f1cf6a0903fe7696cc5a92de50c9f8ea2f636458a2036a05929c095f2 + checksum/configuration: d8b1a21ee36b95a27cb4311ea41bd4bb660b4306ce89a99ed66f4f0425c35084 checksum/configuration-secret: 09216ffaa3d29e14f88b1f30af580d02a2a5e014de4d750b7f275cc07ed4e914 labels: app.kubernetes.io/component: flyte-binary @@ -1345,7 +1345,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: 966ddd9aa11e209c8e2450a11d1e35e51f6bab83a248025ff2f92694c4fdb90d + checksum/secret: 4ce178c1f966129c50b6efd4e46d6574a7a653a479994ba35c434688aee93476 labels: app: docker-registry release: flyte-sandbox diff --git a/docker/sandbox-bundled/manifests/dev.yaml b/docker/sandbox-bundled/manifests/dev.yaml index 91a6b27e52..76e5ed275d 100644 --- a/docker/sandbox-bundled/manifests/dev.yaml +++ b/docker/sandbox-bundled/manifests/dev.yaml @@ -499,7 +499,7 @@ metadata: --- apiVersion: v1 data: - haSharedSecret: SEVEQXNwVFNFOFBmQUNWNg== + haSharedSecret: dURHNWp6VnJvbnFtYm9QZA== proxyPassword: "" proxyUsername: "" kind: Secret @@ -933,7 +933,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: fd79606cd0b1063f59877c9cf987ceb3a0d37462286098053c4aac147e8deba4 + checksum/secret: 2e8126d6988bdffe867b6f100279c5a27c81bb16d16e9c3b04dd322dbe6b3d61 labels: app: docker-registry release: flyte-sandbox diff --git a/go.mod b/go.mod index 47be768516..713fbd4e48 100644 --- a/go.mod +++ b/go.mod @@ -3,11 +3,11 @@ module github.com/flyteorg/flyte go 1.19 require ( - github.com/flyteorg/datacatalog v1.0.48 - github.com/flyteorg/flyteadmin v1.1.110 - github.com/flyteorg/flytepropeller v1.1.106 - github.com/flyteorg/flytestdlib v1.0.19 - github.com/golang/glog v1.0.0 + github.com/flyteorg/datacatalog v1.0.51 + github.com/flyteorg/flyteadmin v1.1.118 + github.com/flyteorg/flytepropeller v1.1.116 + github.com/flyteorg/flytestdlib v1.0.22 + github.com/golang/glog v1.1.0 github.com/spf13/cobra v1.4.0 github.com/spf13/pflag v1.0.5 golang.org/x/sync v0.1.0 @@ -17,11 +17,12 @@ require ( ) require ( - cloud.google.com/go v0.101.0 // indirect - cloud.google.com/go/compute v1.6.1 // indirect - cloud.google.com/go/iam v0.3.0 // indirect - cloud.google.com/go/pubsub v1.10.1 // indirect - cloud.google.com/go/storage v1.22.0 // indirect + cloud.google.com/go v0.110.0 // indirect + cloud.google.com/go/compute v1.19.1 // indirect + cloud.google.com/go/compute/metadata v0.2.3 // indirect + cloud.google.com/go/iam v0.13.0 // indirect + cloud.google.com/go/pubsub v1.30.0 // indirect + cloud.google.com/go/storage v1.28.1 // indirect github.com/Azure/azure-sdk-for-go v63.4.0+incompatible // indirect github.com/Azure/azure-sdk-for-go/sdk/azcore v0.23.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2 // indirect @@ -52,7 +53,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b // indirect github.com/cespare/xxhash v1.1.0 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.8.0 // indirect github.com/cloudevents/sdk-go/protocol/kafka_sarama/v2 v2.8.0 // indirect github.com/cloudevents/sdk-go/v2 v2.8.0 // indirect @@ -69,9 +70,9 @@ require ( github.com/evanphx/json-patch v4.12.0+incompatible // indirect github.com/fatih/color v1.13.0 // indirect github.com/felixge/httpsnoop v1.0.1 // indirect - github.com/flyteorg/flyteidl v1.5.11 // indirect - github.com/flyteorg/flyteplugins v1.1.8 // indirect - github.com/flyteorg/stow v0.3.6 // indirect + github.com/flyteorg/flyteidl v1.5.14 // indirect + github.com/flyteorg/flyteplugins v1.1.16 // indirect + github.com/flyteorg/stow v0.3.7 // indirect github.com/fsnotify/fsnotify v1.5.1 // indirect github.com/ghodss/yaml v1.0.0 // indirect github.com/go-gormigrate/gormigrate/v2 v2.0.0 // indirect @@ -92,8 +93,8 @@ require ( github.com/google/go-cmp v0.5.9 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/uuid v1.3.0 // indirect - github.com/googleapis/gax-go/v2 v2.3.0 // indirect - github.com/googleapis/go-type-adapters v1.0.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.7.1 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/securecookie v1.1.1 // indirect github.com/gorilla/websocket v1.4.2 // indirect @@ -136,7 +137,7 @@ require ( github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect github.com/mattn/goveralls v0.0.6 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect - github.com/mitchellh/mapstructure v1.4.3 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect @@ -165,33 +166,33 @@ require ( github.com/sendgrid/rest v2.6.8+incompatible // indirect github.com/sendgrid/sendgrid-go v3.10.0+incompatible // indirect github.com/sirupsen/logrus v1.8.1 // indirect - github.com/spf13/afero v1.8.2 // indirect + github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/viper v1.11.0 // indirect github.com/stretchr/objx v0.5.0 // indirect - github.com/stretchr/testify v1.8.1 // indirect + github.com/stretchr/testify v1.8.4 // indirect github.com/subosito/gotenv v1.2.0 // indirect - go.opencensus.io v0.23.0 // indirect + go.opencensus.io v0.24.0 // indirect go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.8.0 // indirect go.uber.org/zap v1.21.0 // indirect golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect - golang.org/x/net v0.8.0 // indirect - golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect - golang.org/x/sys v0.6.0 // indirect - golang.org/x/term v0.6.0 // indirect - golang.org/x/text v0.8.0 // indirect - golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect + golang.org/x/net v0.9.0 // indirect + golang.org/x/oauth2 v0.7.0 // indirect + golang.org/x/sys v0.7.0 // indirect + golang.org/x/term v0.7.0 // indirect + golang.org/x/text v0.9.0 // indirect + golang.org/x/time v0.3.0 // indirect golang.org/x/tools v0.6.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect - google.golang.org/api v0.76.0 // indirect + google.golang.org/api v0.114.0 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46 // indirect - google.golang.org/grpc v1.46.0 // indirect - google.golang.org/protobuf v1.28.1 // indirect + google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect + google.golang.org/grpc v1.56.1 // indirect + google.golang.org/protobuf v1.30.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.66.4 // indirect gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect diff --git a/go.sum b/go.sum index 0cf5ec2d2d..9a84ed0316 100644 --- a/go.sum +++ b/go.sum @@ -23,50 +23,40 @@ cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPT cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.101.0 h1:g+LL+JvpvdyGtcaD2xw2mSByE/6F9s471eJSoaysM84= -cloud.google.com/go v0.101.0/go.mod h1:hEiddgDb77jDQ+I80tURYNJEnuwPzFU8awCFFRLKjW0= +cloud.google.com/go v0.110.0 h1:Zc8gqp3+a9/Eyph2KDmcGaPtbKRIoqq4YTlL4NMD0Ys= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1 h1:2sMmt8prCn7DPaG4Pmh0N3Inmc8cT8ae5k1M6VJ9Wqc= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.19.1 h1:am86mquDUgjGNWxiGn+5PGLbmgiWXlE/yNWpIpNvuXY= +cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= +cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= -cloud.google.com/go/iam v0.3.0 h1:exkAomrVUuzx9kWFI1wm3KI0uoDeUFPB4kKGzx6x+Gc= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/kms v1.2.0 h1:4wZHCsSgCW3JhTlTYLi8gBHDYa/uQujOMjWOCKwGNHY= +cloud.google.com/go/iam v0.13.0 h1:+CmB+K0J/33d0zSQ9SlFWUeCCEn5XJA0ZMZ3pHE9u8k= +cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= +cloud.google.com/go/kms v1.10.1 h1:7hm1bRqGCA1GBRQUrp831TwJ9TWhP+tvLuP497CQS2g= cloud.google.com/go/logging v1.0.0/go.mod h1:V1cc3ogwobYzQq5f2R7DS/GvRIrI4FKj01Gs5glwAls= +cloud.google.com/go/longrunning v0.4.1 h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.10.1 h1:ysSVlI7vw1doId/jatBqfbbMUjFVe29oiHHc2fpSzf4= -cloud.google.com/go/pubsub v1.10.1/go.mod h1:P5XeG4KyW/T3e/DqxdTTLZGMNAW42PzRs7haJ5gdhcc= +cloud.google.com/go/pubsub v1.30.0 h1:vCge8m7aUKBJYOgrZp7EsNDf6QMd2CAlXZqWTn3yq6s= +cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.0 h1:NUV0NNp9nkBuW66BFRLuMgldN60C57ET3dhbwLIYio8= -cloud.google.com/go/storage v1.22.0/go.mod h1:GbaLEoMqbVm6sx3Z0R++gSiBlgMv6yUi2q1DeGFKQgE= +cloud.google.com/go/storage v1.28.1 h1:F5QDG5ChchaAVQhINh24U99OWHURqrW8OmQcGKXcbgI= +cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= contrib.go.opencensus.io/exporter/stackdriver v0.13.1/go.mod h1:z2tyTZtPmQ2HvWH4cOmVDgtY+1lomfKdbLnkJvZdc8c= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/Azure/azure-sdk-for-go v63.4.0+incompatible h1:fle3M5Q7vr8auaiPffKyUQmLbvYeqpw30bKU6PrWJFo= @@ -223,8 +213,9 @@ github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054/go.mod h1:sGbDF6 github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 h1:SKI1/fuSdodxmNNyVBR8d7X/HuLnRpvvFO0AgyQk764= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= @@ -240,12 +231,7 @@ github.com/cloudevents/sdk-go/v2 v2.8.0/go.mod h1:GpCBmUj7DIRiDhVvsK5d6WCbgTWs8D github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= github.com/cockroachdb/cockroach-go v0.0.0-20181001143604-e0a95dfd547c/go.mod h1:XGLbWH/ujMcbPbhZq52Nv6UrCghb1yGn//133kEsvDk= @@ -341,8 +327,6 @@ github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5y github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/evanphx/json-patch v0.0.0-20200808040245-162e5629780b/go.mod h1:NAJj0yf/KaRKURN6nyi7A9IZydMivZEm9oQLWNjfKDc= github.com/evanphx/json-patch v0.5.2/go.mod h1:ZWS5hhDbVDyob71nXKNL0+PWn6ToqBHMikGIFbs31qQ= @@ -359,20 +343,20 @@ github.com/fatih/structs v1.0.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/flyteorg/datacatalog v1.0.48 h1:KPUV4uUZ0adLL9uvQ+pmGymdzDrwqeYJzpOk+DR+2e4= -github.com/flyteorg/datacatalog v1.0.48/go.mod h1:VhtWkjCBJ9LZpt6uqTyKMYq1IAkW7dUeAdbWN9DI6h0= -github.com/flyteorg/flyteadmin v1.1.110 h1:NNZtL50qhGGpp8J1P7Bl7QLPTMLT/qdpiWQtmut4fgM= -github.com/flyteorg/flyteadmin v1.1.110/go.mod h1:xlEV456kroJDnPRSRV50iO0VKttiLJDHHH+TJJuh7Dc= -github.com/flyteorg/flyteidl v1.5.11 h1:Xcb17YqNstl+dHQsK+o0Ac+1l1U154wXivg28O3C5l0= -github.com/flyteorg/flyteidl v1.5.11/go.mod h1:EtE/muM2lHHgBabjYcxqe9TWeJSL0kXwbI0RgVwI4Og= -github.com/flyteorg/flyteplugins v1.1.8 h1:UVYdqDdcIqz2JIso+m3MsaPSsTZJZyZQ6Eg7nhX9r/Y= -github.com/flyteorg/flyteplugins v1.1.8/go.mod h1:sRxeatEOHq1b9bTxTRNcwoIkVTAVN9dTz8toXkfcz2E= -github.com/flyteorg/flytepropeller v1.1.106 h1:o9wmCcki/YI3vwZ3NjiQApCCMtJo+1hwMHvYuIKe3GI= -github.com/flyteorg/flytepropeller v1.1.106/go.mod h1:quRRoa2lbK/R6/GXt75pGm1NR+Renm2Kov/vMUHQ4dI= -github.com/flyteorg/flytestdlib v1.0.19 h1:2xY9wBCFUY4UafBkxchPe0EUiRxpjnMNjvomG3W/TfA= -github.com/flyteorg/flytestdlib v1.0.19/go.mod h1:ghw/cjY0sEWIIbyCtcJnL/Gt7ZS7gf9SUi0CCPhbz3s= -github.com/flyteorg/stow v0.3.6 h1:jt50ciM14qhKBaIrB+ppXXY+SXB59FNREFgTJqCyqIk= -github.com/flyteorg/stow v0.3.6/go.mod h1:5dfBitPM004dwaZdoVylVjxFT4GWAgI0ghAndhNUzCo= +github.com/flyteorg/datacatalog v1.0.51 h1:p4NZ9Y6tby415nyl11H9PTjtzQmt4pn8g+wUTRaHie0= +github.com/flyteorg/datacatalog v1.0.51/go.mod h1:bTNS5x+IVNuwawEQMQCRsdnV2bt750nGq+dc6cmxF6w= +github.com/flyteorg/flyteadmin v1.1.118 h1:KBXC6DeDaTJze8aCu1CmFZmKMQOaXmLek43X09yg5sI= +github.com/flyteorg/flyteadmin v1.1.118/go.mod h1:FzjmBGA3Wc1X/l3sjHD6Kgy2LEe16KHm1Mx0JPqWdAg= +github.com/flyteorg/flyteidl v1.5.14 h1:+3ewipoOp82fPyIVgvvrMq1lorl5Kz3Lh6sh/a9+loI= +github.com/flyteorg/flyteidl v1.5.14/go.mod h1:EtE/muM2lHHgBabjYcxqe9TWeJSL0kXwbI0RgVwI4Og= +github.com/flyteorg/flyteplugins v1.1.16 h1:DIQxPERFMvTGnLTkkeG9R8STF3YMvxK1nPtFf+a6o5Q= +github.com/flyteorg/flyteplugins v1.1.16/go.mod h1:HEd4yf0H8XfxMcHFwrTdTIJ/9lEAz83OpgcFQe47L6I= +github.com/flyteorg/flytepropeller v1.1.116 h1:qe6wOfxceTN4eqmAAb1Pj8tTcFarTkBr0uphZPNF1aM= +github.com/flyteorg/flytepropeller v1.1.116/go.mod h1:qAzIN35Xihc2B9JoMukzIBID7ZDh8xgOf9aVe56mN8M= +github.com/flyteorg/flytestdlib v1.0.22 h1:8RAc+TmME54FInf4+t6+C7X8Z/dW6i6aTs6W8SEzpI8= +github.com/flyteorg/flytestdlib v1.0.22/go.mod h1:6nXa5g00qFIsgdvQ7jKQMJmDniqO0hG6Z5X5olfduqQ= +github.com/flyteorg/stow v0.3.7 h1:Cx7j8/Ux6+toD5hp5fy++927V+yAcAttDeQAlUD/864= +github.com/flyteorg/stow v0.3.7/go.mod h1:5dfBitPM004dwaZdoVylVjxFT4GWAgI0ghAndhNUzCo= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= @@ -770,8 +754,9 @@ github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGw github.com/golang/gddo v0.0.0-20180828051604-96d2a289f41e/go.mod h1:xEhNfoBDX1hzLm2Nf80qUvZ2sVwoMZ8d6IE2SrsQfh4= github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2/go.mod h1:xEhNfoBDX1hzLm2Nf80qUvZ2sVwoMZ8d6IE2SrsQfh4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -832,8 +817,6 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-jsonnet v0.16.0/go.mod h1:sOcuej3UW1vpPTZOr8L7RQimqai1a57bt5j22LzGZCw= @@ -845,9 +828,7 @@ github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPg github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -860,9 +841,6 @@ github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -870,18 +848,15 @@ github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0 h1:nRJtk3y8Fm770D42QV6T90ZnvFZyk7agSo3Q+Z9p3WI= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.7.1 h1:gF4c0zjUP2H/s/hEGyLA3I0fA2ZWjzYiONAD6cvPr8A= +github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.1.0/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.3.1/go.mod h1:on+2t9HRStVgn95RSsFWFz+6Q0Snyqv1awfrALZdbtU= -github.com/googleapis/go-type-adapters v1.0.0 h1:9XdMn+d/G57qq1s8dNc5IesGCXHf6V2HZ2JwRxfA2tA= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= github.com/gopherjs/gopherjs v0.0.0-20181004151105-1babbf986f6f/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= @@ -1223,8 +1198,8 @@ github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh github.com/mitchellh/mapstructure v1.2.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.3.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= -github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= github.com/moby/term v0.0.0-20200915141129-7f0af18e79f2/go.mod h1:TjQg8pa4iejrUrjiz0MCtMV38jdMNW4doKSiBrEvCQQ= github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw= @@ -1475,8 +1450,8 @@ github.com/spf13/afero v1.2.0/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTd github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= github.com/spf13/afero v1.3.2/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.8.2 h1:xehSyVa0YnHWsJ49JFljMpg1HX19V6NDZ1fkm1Xznbo= -github.com/spf13/afero v1.8.2/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo= +github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= +github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.2.0/go.mod h1:r2rcYCSwa1IExKTDiTfzaxqT2FNHs8hODu4LnUfgKEg= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= @@ -1527,8 +1502,9 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/subosito/gotenv v1.1.1/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= @@ -1607,8 +1583,9 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib v0.18.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= @@ -1816,17 +1793,13 @@ golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM= +golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181003184128-c57b0facaced/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1840,14 +1813,9 @@ golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 h1:OSnWWcOd/CtWQC2cYSBgbTSJv3ciqd8r54ySIW2y3RE= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1955,34 +1923,23 @@ golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= +golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= +golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= +golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1993,16 +1950,17 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 h1:vVKdlvoWBphwdxWKrFZEuM0kGgGLxUOYcY4U/2Vjg44= golang.org/x/time v0.0.0-20220210224613-90d013bbcef8/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= +golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -2111,8 +2069,6 @@ golang.org/x/tools v0.0.0-20210114065538-d78b04bdf963/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= @@ -2123,7 +2079,6 @@ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gomodules.xyz/jsonpatch/v2 v2.0.1/go.mod h1:IhYNNY4jnS53ZnfE4PAmpKtDpTCj1JFXc+3mwe7XcUU= @@ -2158,23 +2113,8 @@ google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34q google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.76.0 h1:UkZl25bR1FHNqtK/EKs3vCdpZtUO6gea3YElTwc8pQg= -google.golang.org/api v0.76.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.114.0 h1:1xQPji6cO2E2vLiI+C/XiFAnsn1WV3mjaEwGLhi3grE= +google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2230,47 +2170,15 @@ google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210302174412-5ede27ff9881/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46 h1:G1IeWbjrqEq9ChWxEuRPJu6laA67+XgTFHVSAvepr38= -google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= @@ -2296,17 +2204,10 @@ google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAG google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0 h1:oCjezcn6g6A75TGoKYBPgKmVBLexhYLM6MebdrPApP8= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= +google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ= +google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= google.golang.org/grpc/examples v0.0.0-20210304020650-930c79186c99/go.mod h1:Ly7ZA/ARzg8fnPU9TyZIxoz33sEUuWX7txiqs8lPTgE= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -2321,9 +2222,8 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/DataDog/dd-trace-go.v1 v1.22.0/go.mod h1:DVp8HmDh8PuTu2Z0fVVlBsyWaC++fzwVCaGWylTe3tg= gopkg.in/DataDog/dd-trace-go.v1 v1.27.0/go.mod h1:Sp1lku8WJMvNV0kjDI4Ni/T7J/U3BO5ct5kEaoVU8+I= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= diff --git a/kustomize/overlays/eks/kustomization.yaml b/kustomize/overlays/eks/kustomization.yaml index 0f9f4d6c20..47eb81bb7d 100644 --- a/kustomize/overlays/eks/kustomization.yaml +++ b/kustomize/overlays/eks/kustomization.yaml @@ -21,23 +21,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.110 # FLYTEADMIN_TAG override the tag + newTag: v1.1.118 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.8.5 # FLYTECONSOLE_TAG the tag + newTag: v1.9.2 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v1.0.48 # DATACATALOG_TAG override the tag + newTag: v1.0.51 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/gcp/kustomization.yaml b/kustomize/overlays/gcp/kustomization.yaml index 90897b88d0..c6ab14efbd 100644 --- a/kustomize/overlays/gcp/kustomization.yaml +++ b/kustomize/overlays/gcp/kustomization.yaml @@ -23,23 +23,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.110 # FLYTEADMIN_TAG override the tag + newTag: v1.1.118 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.8.5 # FLYTECONSOLE_TAG the tag + newTag: v1.9.2 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v1.0.48 # DATACATALOG_TAG override the tag + newTag: v1.0.51 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/sandbox/kustomization.yaml b/kustomize/overlays/sandbox/kustomization.yaml index b25b1c6cd4..e03f19ed1b 100644 --- a/kustomize/overlays/sandbox/kustomization.yaml +++ b/kustomize/overlays/sandbox/kustomization.yaml @@ -25,23 +25,23 @@ resources: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.110 # FLYTEADMIN_TAG override the tag + newTag: v1.1.118 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.8.5 # FLYTECONSOLE_TAG the tag + newTag: v1.9.2 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v1.0.48 # DATACATALOG_TAG override the tag + newTag: v1.0.51 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/test/kustomization.yaml b/kustomize/overlays/test/kustomization.yaml index 4c54101aca..b7511f8909 100644 --- a/kustomize/overlays/test/kustomization.yaml +++ b/kustomize/overlays/test/kustomization.yaml @@ -19,23 +19,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.110 # FLYTEADMIN_TAG override the tag + newTag: v1.1.118 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.8.5 # FLYTECONSOLE_TAG the tag + newTag: v1.9.2 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v1.0.48 # DATACATALOG_TAG override the tag + newTag: v1.0.51 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.106 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.116 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/rsts/conf.py b/rsts/conf.py index e51523a6cf..7e41a81891 100644 --- a/rsts/conf.py +++ b/rsts/conf.py @@ -30,7 +30,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.8.0" +release = "1.9.0" # -- General configuration --------------------------------------------------- diff --git a/rsts/deployment/configuration/generated/datacatalog_config.rst b/rsts/deployment/configuration/generated/datacatalog_config.rst index dacda53818..b20aa7fe59 100644 --- a/rsts/deployment/configuration/generated/datacatalog_config.rst +++ b/rsts/deployment/configuration/generated/datacatalog_config.rst @@ -15,10 +15,10 @@ Flyte Datacatalog Configuration - `storage <#section-storage>`_ Section: application -================================================================================ +======================================================================================================================== grpcPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ On which grpc port to serve Catalog @@ -30,7 +30,7 @@ On which grpc port to serve Catalog grpcServerReflection (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable GRPC Server Reflection @@ -42,7 +42,7 @@ Enable GRPC Server Reflection httpPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ On which http port to serve Catalog @@ -54,7 +54,7 @@ On which http port to serve Catalog secure (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether to run Catalog in secure mode or not @@ -66,7 +66,7 @@ Whether to run Catalog in secure mode or not readHeaderTimeoutSeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The amount of time allowed to read request headers. @@ -78,10 +78,10 @@ The amount of time allowed to read request headers. Section: database -================================================================================ +======================================================================================================================== host (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -91,7 +91,7 @@ host (string) port (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -101,7 +101,7 @@ port (int) dbname (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -111,7 +111,7 @@ dbname (string) username (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -121,7 +121,7 @@ username (string) password (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -131,7 +131,7 @@ password (string) passwordPath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -141,7 +141,7 @@ passwordPath (string) options (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -151,7 +151,7 @@ options (string) debug (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -161,7 +161,7 @@ debug (bool) enableForeignKeyConstraintWhenMigrating (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether to enable gorm foreign keys when migrating the db @@ -173,7 +173,7 @@ Whether to enable gorm foreign keys when migrating the db maxIdleConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxIdleConnections sets the maximum number of connections in the idle connection pool. @@ -185,7 +185,7 @@ maxIdleConnections sets the maximum number of connections in the idle connection maxOpenConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxOpenConnections sets the maximum number of open connections to the database. @@ -197,7 +197,7 @@ maxOpenConnections sets the maximum number of open connections to the database. connMaxLifeTime (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ sets the maximum amount of time a connection may be reused @@ -209,7 +209,7 @@ sets the maximum amount of time a connection may be reused postgres (`database.PostgresConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -226,7 +226,7 @@ postgres (`database.PostgresConfig`_) sqlite (`database.SQLiteConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -236,10 +236,10 @@ sqlite (`database.SQLiteConfig`_) config.Duration -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Duration (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -249,10 +249,10 @@ Duration (int64) database.PostgresConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The host name of the database server @@ -264,7 +264,7 @@ The host name of the database server port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The port name of the database server @@ -276,7 +276,7 @@ The port name of the database server dbname (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database name @@ -288,7 +288,7 @@ The database name username (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database user who is connecting to the server. @@ -300,7 +300,7 @@ The database user who is connecting to the server. password (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database password. @@ -312,7 +312,7 @@ The database password. passwordPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Points to the file containing the database password. @@ -324,7 +324,7 @@ Points to the file containing the database password. options (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" See http://gorm.io/docs/connecting_to_the_database.html for available options passed, in addition to the above. @@ -336,7 +336,7 @@ See http://gorm.io/docs/connecting_to_the_database.html for available options pa debug (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether or not to start the database connection with debug mode enabled. @@ -348,10 +348,10 @@ Whether or not to start the database connection with debug mode enabled. database.SQLiteConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ file (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The path to the file (existing or new) where the DB should be created / stored. If existing, then this will be re-used, else a new will be created @@ -363,10 +363,10 @@ The path to the file (existing or new) where the DB should be created / stored. Section: datacatalog -================================================================================ +======================================================================================================================== storage-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ StoragePrefix specifies the prefix where DataCatalog stores offloaded ArtifactData in CloudStorage. If not specified, the data will be stored in the base container directly. @@ -378,7 +378,7 @@ StoragePrefix specifies the prefix where DataCatalog stores offloaded ArtifactDa metrics-scope (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Scope that the metrics will record under. @@ -390,7 +390,7 @@ Scope that the metrics will record under. profiler-port (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Port that the profiling service is listening on. @@ -402,7 +402,7 @@ Port that the profiling service is listening on. heartbeat-grace-period-multiplier (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Number of heartbeats before a reservation expires without an extension. @@ -414,7 +414,7 @@ Number of heartbeats before a reservation expires without an extension. max-reservation-heartbeat (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The maximum available reservation extension heartbeat interval. @@ -426,10 +426,10 @@ The maximum available reservation extension heartbeat interval. Section: logger -================================================================================ +======================================================================================================================== show-source (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Includes source code location in logs. @@ -441,7 +441,7 @@ Includes source code location in logs. mute (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Mutes all logs regardless of severity. Intended for benchmarks/tests only. @@ -453,7 +453,7 @@ Mutes all logs regardless of severity. Intended for benchmarks/tests only. level (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the minimum logging level. @@ -465,7 +465,7 @@ Sets the minimum logging level. formatter (`logger.FormatterConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets logging format. @@ -477,10 +477,10 @@ Sets logging format. logger.FormatterConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets logging format type. @@ -492,10 +492,10 @@ Sets logging format type. Section: storage -================================================================================ +======================================================================================================================== type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the type of storage to configure [s3/minio/local/mem/stow]. @@ -507,7 +507,7 @@ Sets the type of storage to configure [s3/minio/local/mem/stow]. connection (`storage.ConnectionConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -522,7 +522,7 @@ connection (`storage.ConnectionConfig`_) stow (`storage.StowConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Storage config for stow backend. @@ -534,7 +534,7 @@ Storage config for stow backend. container (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Initial container (in s3 a bucket) to create -if it doesn't exist-.' @@ -546,7 +546,7 @@ Initial container (in s3 a bucket) to create -if it doesn't exist-.' enable-multicontainer (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ If this is true, then the container argument is overlooked and redundant. This config will automatically open new connections to new containers/buckets as they are encountered @@ -558,7 +558,7 @@ If this is true, then the container argument is overlooked and redundant. This c cache (`storage.CachingConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -569,7 +569,7 @@ cache (`storage.CachingConfig`_) limits (`storage.LimitsConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets limits for stores. @@ -581,7 +581,7 @@ Sets limits for stores. defaultHttpClient (`storage.HTTPClientConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the default http client config. @@ -594,7 +594,7 @@ Sets the default http client config. signedUrl (`storage.SignedURLConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets config for SignedURL. @@ -606,10 +606,10 @@ Sets config for SignedURL. storage.CachingConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ max_size_mbs (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum size of the cache where the Blob store data is cached in-memory. If not specified or set to 0, cache is not used @@ -621,7 +621,7 @@ Maximum size of the cache where the Blob store data is cached in-memory. If not target_gc_percent (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets the garbage collection target percentage. @@ -633,10 +633,10 @@ Sets the garbage collection target percentage. storage.ConnectionConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ endpoint (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" URL for storage client to connect to. @@ -648,7 +648,7 @@ URL for storage client to connect to. auth-type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Auth Type to use [iam,accesskey]. @@ -660,7 +660,7 @@ Auth Type to use [iam,accesskey]. access-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Access key to use. Only required when authtype is set to accesskey. @@ -672,7 +672,7 @@ Access key to use. Only required when authtype is set to accesskey. secret-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Secret to use when accesskey is set. @@ -684,7 +684,7 @@ Secret to use when accesskey is set. region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Region to connect to. @@ -696,7 +696,7 @@ Region to connect to. disable-ssl (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Disables SSL connection. Should only be used for development. @@ -708,10 +708,10 @@ Disables SSL connection. Should only be used for development. config.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ URL (`url.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -731,10 +731,10 @@ URL (`url.URL`_) url.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -744,7 +744,7 @@ Scheme (string) Opaque (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -754,7 +754,7 @@ Opaque (string) User (url.Userinfo) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -764,7 +764,7 @@ User (url.Userinfo) Host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -774,7 +774,7 @@ Host (string) Path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -784,7 +784,7 @@ Path (string) RawPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -794,7 +794,7 @@ RawPath (string) OmitHost (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -804,7 +804,7 @@ OmitHost (bool) ForceQuery (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -814,7 +814,7 @@ ForceQuery (bool) RawQuery (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -824,7 +824,7 @@ RawQuery (string) Fragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -834,7 +834,7 @@ Fragment (string) RawFragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -844,10 +844,10 @@ RawFragment (string) storage.HTTPClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ headers (map[string][]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -857,7 +857,7 @@ headers (map[string][]string) timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets time out on the http client. @@ -869,10 +869,10 @@ Sets time out on the http client. storage.LimitsConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxDownloadMBs (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed download size (in MBs) per call. @@ -884,10 +884,10 @@ Maximum allowed download size (in MBs) per call. storage.SignedURLConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ stowConfigOverride (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -897,10 +897,10 @@ stowConfigOverride (map[string]string) storage.StowConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ kind (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Kind of Stow backend to use. Refer to github/flyteorg/stow @@ -912,7 +912,7 @@ Kind of Stow backend to use. Refer to github/flyteorg/stow config (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Configuration for stow backend. Refer to github/flyteorg/stow diff --git a/rsts/deployment/configuration/generated/flyteadmin_config.rst b/rsts/deployment/configuration/generated/flyteadmin_config.rst index 8b702a5505..13d6950531 100644 --- a/rsts/deployment/configuration/generated/flyteadmin_config.rst +++ b/rsts/deployment/configuration/generated/flyteadmin_config.rst @@ -53,10 +53,10 @@ Flyte Admin Configuration - `task_type_whitelist <#section-task_type_whitelist>`_ Section: admin -================================================================================ +======================================================================================================================== endpoint (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ For admin types, specify where the uri of the service is located. @@ -68,7 +68,7 @@ For admin types, specify where the uri of the service is located. insecure (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use insecure connection. @@ -80,7 +80,7 @@ Use insecure connection. insecureSkipVerify (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ InsecureSkipVerify controls whether a client verifies the server's certificate chain and host name. Caution : shouldn't be use for production usecases' @@ -92,7 +92,7 @@ InsecureSkipVerify controls whether a client verifies the server's certificate c caCertFilePath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use specified certificate file to verify the admin server peer. @@ -104,7 +104,7 @@ Use specified certificate file to verify the admin server peer. maxBackoffDelay (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max delay for grpc backoff @@ -116,7 +116,7 @@ Max delay for grpc backoff perRetryTimeout (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ gRPC per retry timeout @@ -128,7 +128,7 @@ gRPC per retry timeout maxRetries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max number of gRPC retries @@ -140,7 +140,7 @@ Max number of gRPC retries authType (uint8) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Type of OAuth2 flow used for communicating with admin.ClientSecret,Pkce,ExternalCommand are valid values @@ -152,7 +152,7 @@ Type of OAuth2 flow used for communicating with admin.ClientSecret,Pkce,External tokenRefreshWindow (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max duration between token refresh attempt and token expiry. @@ -164,7 +164,7 @@ Max duration between token refresh attempt and token expiry. useAuth (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Deprecated: Auth will be enabled/disabled based on admin's dynamically discovered information. @@ -176,7 +176,7 @@ Deprecated: Auth will be enabled/disabled based on admin's dynamically discovere clientId (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Client ID @@ -188,7 +188,7 @@ Client ID clientSecretLocation (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ File containing the client secret @@ -200,7 +200,7 @@ File containing the client secret clientSecretEnvVar (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Environment variable containing the client secret @@ -212,7 +212,7 @@ Environment variable containing the client secret scopes ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ List of scopes to request @@ -224,7 +224,7 @@ List of scopes to request useAudienceFromAdmin (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use Audience configured from admins public endpoint config. @@ -236,7 +236,7 @@ Use Audience configured from admins public endpoint config. audience (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Audience to use when initiating OAuth2 authorization requests. @@ -248,7 +248,7 @@ Audience to use when initiating OAuth2 authorization requests. authorizationServerUrl (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ This is the URL to your IdP's authorization server. It'll default to Endpoint @@ -260,7 +260,7 @@ This is the URL to your IdP's authorization server. It'll default to Endpoint tokenUrl (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: Your IdP's token endpoint. It'll be discovered from flyte admin's OAuth Metadata endpoint if not provided. @@ -272,7 +272,7 @@ OPTIONAL: Your IdP's token endpoint. It'll be discovered from flyte admin's OAut authorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Custom metadata header to pass JWT @@ -284,7 +284,7 @@ Custom metadata header to pass JWT pkceConfig (`pkce.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for Pkce authentication flow. @@ -297,7 +297,7 @@ Config for Pkce authentication flow. deviceFlowConfig (`deviceflow.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for Device authentication flow. @@ -311,7 +311,7 @@ Config for Device authentication flow. command ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Command for external authentication token generation @@ -323,7 +323,7 @@ Command for external authentication token generation defaultServiceConfig (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -333,7 +333,7 @@ defaultServiceConfig (string) httpProxyURL (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -345,10 +345,10 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. config.Duration -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Duration (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -358,10 +358,10 @@ Duration (int64) config.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ URL (`url.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -381,10 +381,10 @@ URL (`url.URL`_) url.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -394,7 +394,7 @@ Scheme (string) Opaque (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -404,7 +404,7 @@ Opaque (string) User (url.Userinfo) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -414,7 +414,7 @@ User (url.Userinfo) Host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -424,7 +424,7 @@ Host (string) Path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -434,7 +434,7 @@ Path (string) RawPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -444,7 +444,7 @@ RawPath (string) OmitHost (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -454,7 +454,7 @@ OmitHost (bool) ForceQuery (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -464,7 +464,7 @@ ForceQuery (bool) RawQuery (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -474,7 +474,7 @@ RawQuery (string) Fragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -484,7 +484,7 @@ Fragment (string) RawFragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -494,10 +494,10 @@ RawFragment (string) deviceflow.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ refreshTime (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" grace period from the token expiry after which it would refresh the token. @@ -509,7 +509,7 @@ grace period from the token expiry after which it would refresh the token. timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" amount of time the device flow should complete or else it will be cancelled. @@ -521,7 +521,7 @@ amount of time the device flow should complete or else it will be cancelled. pollInterval (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" amount of time the device flow would poll the token endpoint if auth server doesn't return a polling interval. Okta and google IDP do return an interval' @@ -533,10 +533,10 @@ amount of time the device flow would poll the token endpoint if auth server does pkce.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Amount of time the browser session would be active for authentication from client app. @@ -548,7 +548,7 @@ Amount of time the browser session would be active for authentication from clien refreshTime (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" grace period from the token expiry after which it would refresh the token. @@ -560,10 +560,10 @@ grace period from the token expiry after which it would refresh the token. Section: auth -================================================================================ +======================================================================================================================== httpAuthorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -573,7 +573,7 @@ httpAuthorizationHeader (string) grpcAuthorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -583,7 +583,7 @@ grpcAuthorizationHeader (string) disableForHttp (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Disables auth enforcement on HTTP Endpoints. @@ -595,7 +595,7 @@ Disables auth enforcement on HTTP Endpoints. disableForGrpc (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Disables auth enforcement on Grpc Endpoints. @@ -607,7 +607,7 @@ Disables auth enforcement on Grpc Endpoints. authorizedUris ([]config.URL) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -617,7 +617,7 @@ authorizedUris ([]config.URL) httpProxyURL (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -629,7 +629,7 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. userAuth (`config.UserAuthConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines Auth options for users. @@ -655,7 +655,7 @@ Defines Auth options for users. appAuth (`config.OAuth2Options`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines Auth options for apps. UserAuth must be enabled for AppAuth to work. @@ -739,10 +739,10 @@ Defines Auth options for apps. UserAuth must be enabled for AppAuth to work. config.OAuth2Options -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ authServerType (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -752,7 +752,7 @@ authServerType (int) selfAuthServer (`config.AuthorizationServer`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Authorization Server config to run as a service. Use this when using an IdP that does not offer a custom OAuth2 Authorization Server. @@ -821,7 +821,7 @@ Authorization Server config to run as a service. Use this when using an IdP that externalAuthServer (`config.ExternalAuthorizationServer`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" External Authorization Server config. @@ -836,7 +836,7 @@ External Authorization Server config. thirdPartyConfig (`config.ThirdPartyConfigOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines settings to instruct flyte cli tools (and optionally others) on what config to use to setup their client. @@ -854,10 +854,10 @@ Defines settings to instruct flyte cli tools (and optionally others) on what con config.AuthorizationServer -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ issuer (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the issuer to use when issuing and validating tokens. The default value is https:/// @@ -869,7 +869,7 @@ Defines the issuer to use when issuing and validating tokens. The default value accessTokenLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -881,7 +881,7 @@ Defines the lifespan of issued access tokens. refreshTokenLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -893,7 +893,7 @@ Defines the lifespan of issued access tokens. authorizationCodeLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -905,7 +905,7 @@ Defines the lifespan of issued access tokens. claimSymmetricEncryptionKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to encrypt claims in authcode token. @@ -917,7 +917,7 @@ OPTIONAL: Secret name to use to encrypt claims in authcode token. tokenSigningRSAKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to retrieve RSA Signing Key. @@ -929,7 +929,7 @@ OPTIONAL: Secret name to use to retrieve RSA Signing Key. oldTokenSigningRSAKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to retrieve Old RSA Signing Key. This can be useful during key rotation to continue to accept older tokens. @@ -941,7 +941,7 @@ OPTIONAL: Secret name to use to retrieve Old RSA Signing Key. This can be useful staticClients (map[string]*fosite.DefaultClient) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1000,10 +1000,10 @@ staticClients (map[string]*fosite.DefaultClient) config.ExternalAuthorizationServer -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ baseUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" This should be the base url of the authorization server that you are trying to hit. With Okta for instance, it will look something like https://company.okta.com/oauth2/abcdef123456789/ @@ -1015,7 +1015,7 @@ This should be the base url of the authorization server that you are trying to h allowedAudience ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Optional: A list of allowed audiences. If not provided, the audience is expected to be the public Uri of the service. @@ -1027,7 +1027,7 @@ Optional: A list of allowed audiences. If not provided, the audience is expected metadataUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Optional: If the server doesn't support /.well-known/oauth-authorization-server, you can set a custom metadata url here.' @@ -1039,7 +1039,7 @@ Optional: If the server doesn't support /.well-known/oauth-authorization-server, httpProxyURL (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -1051,10 +1051,10 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. config.ThirdPartyConfigOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ flyteClient (`config.FlyteClientConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1069,10 +1069,10 @@ flyteClient (`config.FlyteClientConfig`_) config.FlyteClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ clientId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" public identifier for the app which handles authorization for a Flyte deployment @@ -1084,7 +1084,7 @@ public identifier for the app which handles authorization for a Flyte deployment redirectUri (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" This is the callback uri registered with the app which handles authorization for a Flyte deployment @@ -1096,7 +1096,7 @@ This is the callback uri registered with the app which handles authorization for scopes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Recommended scopes for the client to request. @@ -1109,7 +1109,7 @@ Recommended scopes for the client to request. audience (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Audience to use when initiating OAuth2 authorization requests. @@ -1121,10 +1121,10 @@ Audience to use when initiating OAuth2 authorization requests. config.UserAuthConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ redirectUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1134,7 +1134,7 @@ redirectUrl (`config.URL`_) openId (`config.OpenIDOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OpenID Configuration for User Auth @@ -1152,7 +1152,7 @@ OpenID Configuration for User Auth httpProxyURL (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -1164,7 +1164,7 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. cookieHashKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use for cookie hash key. @@ -1176,7 +1176,7 @@ OPTIONAL: Secret name to use for cookie hash key. cookieBlockKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use for cookie block key. @@ -1188,7 +1188,7 @@ OPTIONAL: Secret name to use for cookie block key. cookieSetting (`config.CookieSettings`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" settings used by cookies created for user auth @@ -1201,10 +1201,10 @@ settings used by cookies created for user auth config.CookieSettings -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ sameSitePolicy (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Allows you to declare if your cookie should be restricted to a first-party or same-site context.Wrapper around http.SameSite. @@ -1216,7 +1216,7 @@ OPTIONAL: Allows you to declare if your cookie should be restricted to a first-p domain (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Allows you to set the domain attribute on the auth cookies. @@ -1228,10 +1228,10 @@ OPTIONAL: Allows you to set the domain attribute on the auth cookies. config.OpenIDOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ clientId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1241,7 +1241,7 @@ clientId (string) clientSecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1251,7 +1251,7 @@ clientSecretName (string) clientSecretFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1261,7 +1261,7 @@ clientSecretFile (string) baseUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1271,7 +1271,7 @@ baseUrl (`config.URL`_) scopes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1282,10 +1282,10 @@ scopes ([]string) Section: cloudevents -================================================================================ +======================================================================================================================== enable (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1295,7 +1295,7 @@ enable (bool) type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1305,7 +1305,7 @@ type (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1315,7 +1315,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1325,7 +1325,7 @@ gcp (`interfaces.GCPConfig`_) kafka (`interfaces.KafkaConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1336,7 +1336,7 @@ kafka (`interfaces.KafkaConfig`_) eventsPublisher (`interfaces.EventsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1347,7 +1347,7 @@ eventsPublisher (`interfaces.EventsPublisherConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1357,7 +1357,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1367,10 +1367,10 @@ reconnectDelaySeconds (int) interfaces.AWSConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1380,10 +1380,10 @@ region (string) interfaces.EventsPublisherConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ topicName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1393,7 +1393,7 @@ topicName (string) eventTypes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1403,10 +1403,10 @@ eventTypes ([]string) interfaces.GCPConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ projectId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1416,10 +1416,10 @@ projectId (string) interfaces.KafkaConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ version (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1429,7 +1429,7 @@ version (string) brokers ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1439,10 +1439,10 @@ brokers ([]string) Section: cluster_resources -================================================================================ +======================================================================================================================== templatePath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1452,7 +1452,7 @@ templatePath (string) templateData (map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1462,7 +1462,7 @@ templateData (map[string]interfaces.DataSource) refreshInterval (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1472,7 +1472,7 @@ refreshInterval (`config.Duration`_) customData (map[string]map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1482,7 +1482,7 @@ customData (map[string]map[string]interfaces.DataSource) standaloneDeployment (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether the cluster resource sync is running in a standalone deployment and should call flyteadmin service endpoints @@ -1494,10 +1494,10 @@ Whether the cluster resource sync is running in a standalone deployment and shou Section: clusters -================================================================================ +======================================================================================================================== clusterConfigs ([]interfaces.ClusterConfig) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1507,7 +1507,7 @@ clusterConfigs ([]interfaces.ClusterConfig) labelClusterMap (map[string][]interfaces.ClusterEntity) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1517,7 +1517,7 @@ labelClusterMap (map[string][]interfaces.ClusterEntity) defaultExecutionLabel (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1527,10 +1527,10 @@ defaultExecutionLabel (string) Section: database -================================================================================ +======================================================================================================================== host (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1540,7 +1540,7 @@ host (string) port (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1550,7 +1550,7 @@ port (int) dbname (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1560,7 +1560,7 @@ dbname (string) username (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1570,7 +1570,7 @@ username (string) password (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1580,7 +1580,7 @@ password (string) passwordPath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1590,7 +1590,7 @@ passwordPath (string) options (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1600,7 +1600,7 @@ options (string) debug (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1610,7 +1610,7 @@ debug (bool) enableForeignKeyConstraintWhenMigrating (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether to enable gorm foreign keys when migrating the db @@ -1622,7 +1622,7 @@ Whether to enable gorm foreign keys when migrating the db maxIdleConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxIdleConnections sets the maximum number of connections in the idle connection pool. @@ -1634,7 +1634,7 @@ maxIdleConnections sets the maximum number of connections in the idle connection maxOpenConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxOpenConnections sets the maximum number of open connections to the database. @@ -1646,7 +1646,7 @@ maxOpenConnections sets the maximum number of open connections to the database. connMaxLifeTime (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ sets the maximum amount of time a connection may be reused @@ -1658,7 +1658,7 @@ sets the maximum amount of time a connection may be reused postgres (`database.PostgresConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1675,7 +1675,7 @@ postgres (`database.PostgresConfig`_) sqlite (`database.SQLiteConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1685,10 +1685,10 @@ sqlite (`database.SQLiteConfig`_) database.PostgresConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The host name of the database server @@ -1700,7 +1700,7 @@ The host name of the database server port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The port name of the database server @@ -1712,7 +1712,7 @@ The port name of the database server dbname (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database name @@ -1724,7 +1724,7 @@ The database name username (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database user who is connecting to the server. @@ -1736,7 +1736,7 @@ The database user who is connecting to the server. password (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database password. @@ -1748,7 +1748,7 @@ The database password. passwordPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Points to the file containing the database password. @@ -1760,7 +1760,7 @@ Points to the file containing the database password. options (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" See http://gorm.io/docs/connecting_to_the_database.html for available options passed, in addition to the above. @@ -1772,7 +1772,7 @@ See http://gorm.io/docs/connecting_to_the_database.html for available options pa debug (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether or not to start the database connection with debug mode enabled. @@ -1784,10 +1784,10 @@ Whether or not to start the database connection with debug mode enabled. database.SQLiteConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ file (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The path to the file (existing or new) where the DB should be created / stored. If existing, then this will be re-used, else a new will be created @@ -1799,10 +1799,10 @@ The path to the file (existing or new) where the DB should be created / stored. Section: domains -================================================================================ +======================================================================================================================== id (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1812,7 +1812,7 @@ id (string) name (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1822,10 +1822,10 @@ name (string) Section: externalevents -================================================================================ +======================================================================================================================== enable (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1835,7 +1835,7 @@ enable (bool) type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1845,7 +1845,7 @@ type (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1855,7 +1855,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1865,7 +1865,7 @@ gcp (`interfaces.GCPConfig`_) eventsPublisher (`interfaces.EventsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1876,7 +1876,7 @@ eventsPublisher (`interfaces.EventsPublisherConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1886,7 +1886,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1896,10 +1896,10 @@ reconnectDelaySeconds (int) Section: flyteadmin -================================================================================ +======================================================================================================================== roleNameKey (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1909,7 +1909,7 @@ roleNameKey (string) metricsScope (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1919,7 +1919,7 @@ metricsScope (string) metricsKeys ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1937,7 +1937,7 @@ metricsKeys ([]string) profilerPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1947,7 +1947,7 @@ profilerPort (int) metadataStoragePrefix ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1958,7 +1958,7 @@ metadataStoragePrefix ([]string) eventVersion (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1968,7 +1968,7 @@ eventVersion (int) asyncEventsBufferSize (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1978,7 +1978,7 @@ asyncEventsBufferSize (int) maxParallelism (int32) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1988,7 +1988,7 @@ maxParallelism (int32) labels (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1998,7 +1998,7 @@ labels (map[string]string) annotations (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2008,7 +2008,7 @@ annotations (map[string]string) interruptible (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2018,7 +2018,7 @@ interruptible (bool) overwriteCache (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2028,7 +2028,7 @@ overwriteCache (bool) assumableIamRole (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2038,7 +2038,7 @@ assumableIamRole (string) k8sServiceAccount (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2048,7 +2048,7 @@ k8sServiceAccount (string) outputLocationPrefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2058,7 +2058,7 @@ outputLocationPrefix (string) useOffloadedWorkflowClosure (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2068,7 +2068,7 @@ useOffloadedWorkflowClosure (bool) envs (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2078,10 +2078,10 @@ envs (map[string]string) Section: logger -================================================================================ +======================================================================================================================== show-source (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Includes source code location in logs. @@ -2093,7 +2093,7 @@ Includes source code location in logs. mute (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Mutes all logs regardless of severity. Intended for benchmarks/tests only. @@ -2105,7 +2105,7 @@ Mutes all logs regardless of severity. Intended for benchmarks/tests only. level (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the minimum logging level. @@ -2117,7 +2117,7 @@ Sets the minimum logging level. formatter (`logger.FormatterConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets logging format. @@ -2129,10 +2129,10 @@ Sets logging format. logger.FormatterConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets logging format type. @@ -2144,10 +2144,10 @@ Sets logging format type. Section: namespace_mapping -================================================================================ +======================================================================================================================== mapping (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2157,7 +2157,7 @@ mapping (string) template (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2167,7 +2167,7 @@ template (string) templateData (map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2177,10 +2177,10 @@ templateData (map[string]interfaces.DataSource) Section: notifications -================================================================================ +======================================================================================================================== type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2190,7 +2190,7 @@ type (string) region (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2200,7 +2200,7 @@ region (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2210,7 +2210,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2220,7 +2220,7 @@ gcp (`interfaces.GCPConfig`_) publisher (`interfaces.NotificationsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2230,7 +2230,7 @@ publisher (`interfaces.NotificationsPublisherConfig`_) processor (`interfaces.NotificationsProcessorConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2241,7 +2241,7 @@ processor (`interfaces.NotificationsProcessorConfig`_) emailer (`interfaces.NotificationsEmailerConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2257,7 +2257,7 @@ emailer (`interfaces.NotificationsEmailerConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2267,7 +2267,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2277,10 +2277,10 @@ reconnectDelaySeconds (int) interfaces.NotificationsEmailerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ emailServerConfig (`interfaces.EmailServerConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2292,7 +2292,7 @@ emailServerConfig (`interfaces.EmailServerConfig`_) subject (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2302,7 +2302,7 @@ subject (string) sender (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2312,7 +2312,7 @@ sender (string) body (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2322,10 +2322,10 @@ body (string) interfaces.EmailServerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ serviceName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2335,7 +2335,7 @@ serviceName (string) apiKeyEnvVar (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2345,7 +2345,7 @@ apiKeyEnvVar (string) apiKeyFilePath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2355,10 +2355,10 @@ apiKeyFilePath (string) interfaces.NotificationsProcessorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ queueName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2368,7 +2368,7 @@ queueName (string) accountId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2378,10 +2378,10 @@ accountId (string) interfaces.NotificationsPublisherConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ topicName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2391,10 +2391,10 @@ topicName (string) Section: plugins -================================================================================ +======================================================================================================================== catalogcache (`catalog.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2411,7 +2411,7 @@ catalogcache (`catalog.Config`_) k8s (`config.K8sPluginConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2456,10 +2456,10 @@ k8s (`config.K8sPluginConfig`_) catalog.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ reader (`workqueue.Config`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Catalog reader workqueue config. Make sure the index cache must be big enough to accommodate the biggest array task allowed to run on the system. @@ -2473,7 +2473,7 @@ Catalog reader workqueue config. Make sure the index cache must be big enough to writer (`workqueue.Config`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Catalog writer workqueue config. Make sure the index cache must be big enough to accommodate the biggest array task allowed to run on the system. @@ -2487,10 +2487,10 @@ Catalog writer workqueue config. Make sure the index cache must be big enough to workqueue.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ workers (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Number of concurrent workers to start processing the queue. @@ -2502,7 +2502,7 @@ Number of concurrent workers to start processing the queue. maxRetries (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of retries per item. @@ -2514,7 +2514,7 @@ Maximum number of retries per item. maxItems (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of entries to keep in the index. @@ -2526,10 +2526,10 @@ Maximum number of entries to keep in the index. config.K8sPluginConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ inject-finalizer (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Instructs the plugin to inject a finalizer on startTask and remove it on task termination. @@ -2541,7 +2541,7 @@ Instructs the plugin to inject a finalizer on startTask and remove it on task te default-annotations (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2551,7 +2551,7 @@ default-annotations (map[string]string) default-labels (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2561,7 +2561,7 @@ default-labels (map[string]string) default-env-vars (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2571,7 +2571,7 @@ default-env-vars (map[string]string) default-env-vars-from-env (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2581,7 +2581,7 @@ default-env-vars-from-env (map[string]string) default-cpus (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines a default value for cpu for containers if not specified. @@ -2593,7 +2593,7 @@ Defines a default value for cpu for containers if not specified. default-memory (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines a default value for memory for containers if not specified. @@ -2605,7 +2605,7 @@ Defines a default value for memory for containers if not specified. default-tolerations ([]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2615,7 +2615,7 @@ default-tolerations ([]v1.Toleration) default-node-selector (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2625,7 +2625,7 @@ default-node-selector (map[string]string) default-affinity (v1.Affinity) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2635,7 +2635,7 @@ default-affinity (v1.Affinity) scheduler-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines scheduler name. @@ -2647,7 +2647,7 @@ Defines scheduler name. interruptible-tolerations ([]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2657,7 +2657,7 @@ interruptible-tolerations ([]v1.Toleration) interruptible-node-selector (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2667,7 +2667,7 @@ interruptible-node-selector (map[string]string) interruptible-node-selector-requirement (v1.NodeSelectorRequirement) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2677,7 +2677,7 @@ interruptible-node-selector-requirement (v1.NodeSelectorRequirement) non-interruptible-node-selector-requirement (v1.NodeSelectorRequirement) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2687,7 +2687,7 @@ non-interruptible-node-selector-requirement (v1.NodeSelectorRequirement) resource-tolerations (map[v1.ResourceName][]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2697,7 +2697,7 @@ resource-tolerations (map[v1.ResourceName][]v1.Toleration) co-pilot (`config.FlyteCoPilotConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Co-Pilot Configuration @@ -2718,7 +2718,7 @@ Co-Pilot Configuration delete-resource-on-finalize (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Instructs the system to delete the resource upon successful execution of a k8s pod rather than have the k8s garbage collector clean it up. This ensures that no resources are kept around (potentially consuming cluster resources). This, however, will cause k8s log links to expire as soon as the resource is finalized. @@ -2730,7 +2730,7 @@ Instructs the system to delete the resource upon successful execution of a k8s p create-container-error-grace-period (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2740,7 +2740,7 @@ create-container-error-grace-period (`config.Duration`_) gpu-resource-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2750,7 +2750,7 @@ gpu-resource-name (string) default-pod-security-context (v1.PodSecurityContext) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2760,7 +2760,7 @@ default-pod-security-context (v1.PodSecurityContext) default-security-context (v1.SecurityContext) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2770,7 +2770,7 @@ default-security-context (v1.SecurityContext) enable-host-networking-pod (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2780,7 +2780,7 @@ enable-host-networking-pod (bool) default-pod-dns-config (v1.PodDNSConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2790,7 +2790,7 @@ default-pod-dns-config (v1.PodDNSConfig) default-pod-template-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the PodTemplate to use as the base for all k8s pods created by FlytePropeller. @@ -2802,7 +2802,7 @@ Name of the PodTemplate to use as the base for all k8s pods created by FlyteProp default-pod-template-resync (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Frequency of resyncing default pod templates @@ -2814,10 +2814,10 @@ Frequency of resyncing default pod templates config.FlyteCoPilotConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Flyte co-pilot sidecar container name prefix. (additional bits will be added after this) @@ -2829,7 +2829,7 @@ Flyte co-pilot sidecar container name prefix. (additional bits will be added aft image (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Flyte co-pilot Docker Image FQN @@ -2841,7 +2841,7 @@ Flyte co-pilot Docker Image FQN default-input-path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default path where the volume should be mounted @@ -2853,7 +2853,7 @@ Default path where the volume should be mounted default-output-path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default path where the volume should be mounted @@ -2865,7 +2865,7 @@ Default path where the volume should be mounted input-vol-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the data volume that is created for storing inputs @@ -2877,7 +2877,7 @@ Name of the data volume that is created for storing inputs output-vol-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the data volume that is created for storing outputs @@ -2889,7 +2889,7 @@ Name of the data volume that is created for storing outputs start-timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2899,7 +2899,7 @@ start-timeout (`config.Duration`_) cpu (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Used to set cpu for co-pilot containers @@ -2911,7 +2911,7 @@ Used to set cpu for co-pilot containers memory (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Used to set memory for co-pilot containers @@ -2923,7 +2923,7 @@ Used to set memory for co-pilot containers storage (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default storage limit for individual inputs / outputs @@ -2935,10 +2935,10 @@ Default storage limit for individual inputs / outputs resource.Quantity -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ i (`resource.int64Amount`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2948,7 +2948,7 @@ i (`resource.int64Amount`_) d (`resource.infDecAmount`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2958,7 +2958,7 @@ d (`resource.infDecAmount`_) s (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2968,7 +2968,7 @@ s (string) Format (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2978,10 +2978,10 @@ Format (string) resource.infDecAmount -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Dec (inf.Dec) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2991,10 +2991,10 @@ Dec (inf.Dec) resource.int64Amount -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ value (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3004,7 +3004,7 @@ value (int64) scale (int32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3014,10 +3014,10 @@ scale (int32) Section: propeller -================================================================================ +======================================================================================================================== kube-config (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Path to kubernetes client config file. @@ -3029,7 +3029,7 @@ Path to kubernetes client config file. master (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3039,7 +3039,7 @@ master (string) workers (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Number of threads to process workflows @@ -3051,7 +3051,7 @@ Number of threads to process workflows workflow-reeval-duration (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Frequency of re-evaluating workflows @@ -3063,7 +3063,7 @@ Frequency of re-evaluating workflows downstream-eval-duration (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Frequency of re-evaluating downstream tasks @@ -3075,7 +3075,7 @@ Frequency of re-evaluating downstream tasks limit-namespace (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Namespaces to watch for this propeller @@ -3087,7 +3087,7 @@ Namespaces to watch for this propeller prof-port (`config.Port`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Profiler port @@ -3099,7 +3099,7 @@ Profiler port metadata-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ MetadataPrefix should be used if all the metadata for Flyte executions should be stored under a specific prefix in CloudStorage. If not specified, the data will be stored in the base container directly. @@ -3111,7 +3111,7 @@ MetadataPrefix should be used if all the metadata for Flyte executions should be rawoutput-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ a fully qualified storage path of the form s3://flyte/abc/..., where all data sandboxes should be stored. @@ -3123,7 +3123,7 @@ a fully qualified storage path of the form s3://flyte/abc/..., where all data sa queue (`config.CompositeQueueConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Workflow workqueue configuration, affects the way the work is consumed from the queue. @@ -3149,7 +3149,7 @@ Workflow workqueue configuration, affects the way the work is consumed from the metrics-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ An optional prefix for all published metrics. @@ -3161,7 +3161,7 @@ An optional prefix for all published metrics. metrics-keys ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Metrics labels applied to prometheus metrics emitted by the service. @@ -3176,7 +3176,7 @@ Metrics labels applied to prometheus metrics emitted by the service. enable-admin-launcher (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable remote Workflow launcher to Admin @@ -3188,7 +3188,7 @@ Enable remote Workflow launcher to Admin max-workflow-retries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of retries per workflow @@ -3200,7 +3200,7 @@ Maximum number of retries per workflow max-ttl-hours (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of hours a completed workflow should be retained. Number between 1-23 hours @@ -3212,7 +3212,7 @@ Maximum number of hours a completed workflow should be retained. Number between gc-interval (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Run periodic GC every 30 minutes @@ -3224,7 +3224,7 @@ Run periodic GC every 30 minutes leader-election (`config.LeaderElectionConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for leader election. @@ -3242,7 +3242,7 @@ Config for leader election. publish-k8s-events (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable events publishing to K8s events API. @@ -3254,7 +3254,7 @@ Enable events publishing to K8s events API. max-output-size-bytes (int64) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum size of outputs per task @@ -3266,7 +3266,7 @@ Maximum size of outputs per task enable-grpc-latency-metrics (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable grpc latency metrics. Note Histograms metrics can be expensive on Prometheus servers. @@ -3278,7 +3278,7 @@ Enable grpc latency metrics. Note Histograms metrics can be expensive on Prometh kube-client-config (`config.KubeClientConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configuration to control the Kubernetes client @@ -3292,7 +3292,7 @@ Configuration to control the Kubernetes client node-config (`config.NodeConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ config for a workflow node @@ -3309,7 +3309,7 @@ config for a workflow node max-streak-length (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of consecutive rounds that one propeller worker can use for one workflow - >1 => turbo-mode is enabled. @@ -3321,7 +3321,7 @@ Maximum number of consecutive rounds that one propeller worker can use for one w event-config (`config.EventConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configures execution event behavior. @@ -3334,7 +3334,7 @@ Configures execution event behavior. include-shard-key-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified shard key label in the k8s FlyteWorkflow CRD label selector @@ -3346,7 +3346,7 @@ Include the specified shard key label in the k8s FlyteWorkflow CRD label selecto exclude-shard-key-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified shard key label from the k8s FlyteWorkflow CRD label selector @@ -3358,7 +3358,7 @@ Exclude the specified shard key label from the k8s FlyteWorkflow CRD label selec include-project-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified project label in the k8s FlyteWorkflow CRD label selector @@ -3370,7 +3370,7 @@ Include the specified project label in the k8s FlyteWorkflow CRD label selector exclude-project-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified project label from the k8s FlyteWorkflow CRD label selector @@ -3382,7 +3382,7 @@ Exclude the specified project label from the k8s FlyteWorkflow CRD label selecto include-domain-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified domain label in the k8s FlyteWorkflow CRD label selector @@ -3394,7 +3394,7 @@ Include the specified domain label in the k8s FlyteWorkflow CRD label selector exclude-domain-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector @@ -3406,7 +3406,7 @@ Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector cluster-id (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Unique cluster id running this flytepropeller instance with which to annotate execution events @@ -3418,7 +3418,7 @@ Unique cluster id running this flytepropeller instance with which to annotate ex create-flyteworkflow-crd (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable creation of the FlyteWorkflow CRD on startup @@ -3430,10 +3430,10 @@ Enable creation of the FlyteWorkflow CRD on startup config.CompositeQueueConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Type of composite queue to use for the WorkQueue @@ -3445,7 +3445,7 @@ Type of composite queue to use for the WorkQueue queue (`config.WorkqueueConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Workflow workqueue configuration, affects the way the work is consumed from the queue. @@ -3461,7 +3461,7 @@ Workflow workqueue configuration, affects the way the work is consumed from the sub-queue (`config.WorkqueueConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" SubQueue configuration, affects the way the nodes cause the top-level Work to be re-evaluated. @@ -3477,7 +3477,7 @@ SubQueue configuration, affects the way the nodes cause the top-level Work to be batching-interval (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration for which downstream updates are buffered @@ -3489,7 +3489,7 @@ Duration for which downstream updates are buffered batch-size (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3499,10 +3499,10 @@ batch-size (int) config.WorkqueueConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Type of RateLimiter to use for the WorkQueue @@ -3514,7 +3514,7 @@ Type of RateLimiter to use for the WorkQueue base-delay (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" base backoff delay for failure @@ -3526,7 +3526,7 @@ base backoff delay for failure max-delay (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max backoff delay for failure @@ -3538,7 +3538,7 @@ Max backoff delay for failure rate (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Bucket Refill rate per second @@ -3550,7 +3550,7 @@ Bucket Refill rate per second capacity (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Bucket capacity as number of items @@ -3562,10 +3562,10 @@ Bucket capacity as number of items config.EventConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ raw-output-policy (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" How output data should be passed along in execution events. @@ -3577,7 +3577,7 @@ How output data should be passed along in execution events. fallback-to-output-reference (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether output data should be sent by reference when it is too large to be sent inline in execution events. @@ -3589,10 +3589,10 @@ Whether output data should be sent by reference when it is too large to be sent config.KubeClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ qps (float32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3602,7 +3602,7 @@ qps (float32) burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max burst rate for throttle. 0 defaults to 10 @@ -3614,7 +3614,7 @@ Max burst rate for throttle. 0 defaults to 10 timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max duration allowed for every request to KubeAPI before giving up. 0 implies no timeout. @@ -3626,10 +3626,10 @@ Max duration allowed for every request to KubeAPI before giving up. 0 implies no config.LeaderElectionConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ enabled (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Enables/Disables leader election. @@ -3641,7 +3641,7 @@ Enables/Disables leader election. lock-config-map (`types.NamespacedName`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" ConfigMap namespace/name to use for resource lock. @@ -3654,7 +3654,7 @@ ConfigMap namespace/name to use for resource lock. lease-duration (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration that non-leader candidates will wait to force acquire leadership. This is measured against time of last observed ack. @@ -3666,7 +3666,7 @@ Duration that non-leader candidates will wait to force acquire leadership. This renew-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration that the acting master will retry refreshing leadership before giving up. @@ -3678,7 +3678,7 @@ Duration that the acting master will retry refreshing leadership before giving u retry-period (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration the LeaderElector clients should wait between tries of actions. @@ -3690,10 +3690,10 @@ Duration the LeaderElector clients should wait between tries of actions. types.NamespacedName -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Namespace (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3703,7 +3703,7 @@ Namespace (string) Name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3713,10 +3713,10 @@ Name (string) config.NodeConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ default-deadlines (`config.DefaultDeadlines`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value for timeouts @@ -3730,7 +3730,7 @@ Default value for timeouts max-node-retries-system-failures (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of retries per node for node failure due to infra issues @@ -3742,7 +3742,7 @@ Maximum number of retries per node for node failure due to infra issues interruptible-failure-threshold (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" number of failures for a node to be still considered interruptible' @@ -3754,10 +3754,10 @@ number of failures for a node to be still considered interruptible' config.DefaultDeadlines -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ node-execution-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of node execution timeout that includes the time spent to run the node/workflow @@ -3769,7 +3769,7 @@ Default value of node execution timeout that includes the time spent to run the node-active-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of node timeout that includes the time spent queued. @@ -3781,7 +3781,7 @@ Default value of node timeout that includes the time spent queued. workflow-active-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of workflow timeout that includes the time spent queued. @@ -3793,10 +3793,10 @@ Default value of workflow timeout that includes the time spent queued. config.Port -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3806,10 +3806,10 @@ port (int) Section: qualityofservice -================================================================================ +======================================================================================================================== tierExecutionValues (map[string]interfaces.QualityOfServiceSpec) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3819,7 +3819,7 @@ tierExecutionValues (map[string]interfaces.QualityOfServiceSpec) defaultTiers (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3829,10 +3829,10 @@ defaultTiers (map[string]string) Section: queues -================================================================================ +======================================================================================================================== executionQueues (interfaces.ExecutionQueues) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3842,7 +3842,7 @@ executionQueues (interfaces.ExecutionQueues) workflowConfigs (interfaces.WorkflowConfigs) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3852,10 +3852,10 @@ workflowConfigs (interfaces.WorkflowConfigs) Section: registration -================================================================================ +======================================================================================================================== maxWorkflowNodes (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3865,7 +3865,7 @@ maxWorkflowNodes (int) maxLabelEntries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3875,7 +3875,7 @@ maxLabelEntries (int) maxAnnotationEntries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3885,7 +3885,7 @@ maxAnnotationEntries (int) workflowSizeLimit (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3895,10 +3895,10 @@ workflowSizeLimit (string) Section: remotedata -================================================================================ +======================================================================================================================== scheme (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3908,7 +3908,7 @@ scheme (string) region (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3918,7 +3918,7 @@ region (string) signedUrls (`interfaces.SignedURL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3930,7 +3930,7 @@ signedUrls (`interfaces.SignedURL`_) maxSizeInBytes (int64) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3940,7 +3940,7 @@ maxSizeInBytes (int64) inlineEventDataPolicy (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Specifies how inline execution event data should be saved in the backend @@ -3952,10 +3952,10 @@ Specifies how inline execution event data should be saved in the backend interfaces.SignedURL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ enabled (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether signed urls should even be returned with GetExecutionData, GetNodeExecutionData and GetTaskExecutionData response objects. @@ -3967,7 +3967,7 @@ Whether signed urls should even be returned with GetExecutionData, GetNodeExecut durationMinutes (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3977,7 +3977,7 @@ durationMinutes (int) signingPrincipal (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3987,10 +3987,10 @@ signingPrincipal (string) Section: scheduler -================================================================================ +======================================================================================================================== profilerPort (`config.Port`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4000,7 +4000,7 @@ profilerPort (`config.Port`_) eventScheduler (`interfaces.EventSchedulerConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4016,7 +4016,7 @@ eventScheduler (`interfaces.EventSchedulerConfig`_) workflowExecutor (`interfaces.WorkflowExecutorConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4035,7 +4035,7 @@ workflowExecutor (`interfaces.WorkflowExecutorConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4045,7 +4045,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4055,10 +4055,10 @@ reconnectDelaySeconds (int) interfaces.EventSchedulerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4068,7 +4068,7 @@ scheme (string) region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4078,7 +4078,7 @@ region (string) scheduleRole (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4088,7 +4088,7 @@ scheduleRole (string) targetName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4098,7 +4098,7 @@ targetName (string) scheduleNamePrefix (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4108,7 +4108,7 @@ scheduleNamePrefix (string) aws (interfaces.AWSSchedulerConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4118,7 +4118,7 @@ aws (interfaces.AWSSchedulerConfig) local (`interfaces.FlyteSchedulerConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4128,13 +4128,13 @@ local (`interfaces.FlyteSchedulerConfig`_) interfaces.FlyteSchedulerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ interfaces.WorkflowExecutorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4144,7 +4144,7 @@ scheme (string) region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4154,7 +4154,7 @@ region (string) scheduleQueueName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4164,7 +4164,7 @@ scheduleQueueName (string) accountId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4174,7 +4174,7 @@ accountId (string) aws (interfaces.AWSWorkflowExecutorConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4184,7 +4184,7 @@ aws (interfaces.AWSWorkflowExecutorConfig) local (`interfaces.FlyteWorkflowExecutorConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4197,10 +4197,10 @@ local (`interfaces.FlyteWorkflowExecutorConfig`_) interfaces.FlyteWorkflowExecutorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ adminRateLimit (`interfaces.AdminRateLimit`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4211,7 +4211,7 @@ adminRateLimit (`interfaces.AdminRateLimit`_) useUTCTz (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4221,10 +4221,10 @@ useUTCTz (bool) interfaces.AdminRateLimit -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ tps (float64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4234,7 +4234,7 @@ tps (float64) burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4244,10 +4244,10 @@ burst (int) Section: secrets -================================================================================ +======================================================================================================================== secrets-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Prefix where to look for secrets file @@ -4259,7 +4259,7 @@ Prefix where to look for secrets file env-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Prefix for environment variables @@ -4271,10 +4271,10 @@ Prefix for environment variables Section: server -================================================================================ +======================================================================================================================== httpPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ On which http port to serve admin @@ -4286,7 +4286,7 @@ On which http port to serve admin grpcPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ deprecated @@ -4298,7 +4298,7 @@ deprecated grpcServerReflection (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ deprecated @@ -4310,7 +4310,7 @@ deprecated kube-config (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Path to kubernetes client config file, default is empty, useful for incluster config. @@ -4322,7 +4322,7 @@ Path to kubernetes client config file, default is empty, useful for incluster co master (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The address of the Kubernetes API server. @@ -4334,7 +4334,7 @@ The address of the Kubernetes API server. security (`config.ServerSecurityOptions`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4355,7 +4355,7 @@ security (`config.ServerSecurityOptions`_) grpc (`config.GrpcConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4367,7 +4367,7 @@ grpc (`config.GrpcConfig`_) thirdPartyConfig (`config.ThirdPartyConfigOptions`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Deprecated please use auth.appAuth.thirdPartyConfig instead. @@ -4383,7 +4383,7 @@ Deprecated please use auth.appAuth.thirdPartyConfig instead. dataProxy (`config.DataProxyConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines data proxy configuration. @@ -4401,7 +4401,7 @@ Defines data proxy configuration. readHeaderTimeoutSeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The amount of time allowed to read request headers. @@ -4413,7 +4413,7 @@ The amount of time allowed to read request headers. kubeClientConfig (`config.KubeClientConfig (kubeClientConfig)`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configuration to control the Kubernetes client @@ -4427,10 +4427,10 @@ Configuration to control the Kubernetes client config.DataProxyConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ upload (`config.DataProxyUploadConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines data proxy upload configuration. @@ -4445,7 +4445,7 @@ Defines data proxy upload configuration. download (`config.DataProxyDownloadConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines data proxy download configuration. @@ -4457,10 +4457,10 @@ Defines data proxy download configuration. config.DataProxyDownloadConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxExpiresIn (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed expiration duration. @@ -4472,10 +4472,10 @@ Maximum allowed expiration duration. config.DataProxyUploadConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxSize (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed upload size. @@ -4487,7 +4487,7 @@ Maximum allowed upload size. maxExpiresIn (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed expiration duration. @@ -4499,7 +4499,7 @@ Maximum allowed expiration duration. defaultFileNameLength (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default length for the generated file name if not provided in the request. @@ -4511,7 +4511,7 @@ Default length for the generated file name if not provided in the request. storagePrefix (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Storage prefix to use for all upload requests. @@ -4523,10 +4523,10 @@ Storage prefix to use for all upload requests. config.GrpcConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" On which grpc port to serve admin @@ -4538,7 +4538,7 @@ On which grpc port to serve admin serverReflection (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Enable GRPC Server Reflection @@ -4550,7 +4550,7 @@ Enable GRPC Server Reflection maxMessageSizeBytes (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The max size in bytes for incoming gRPC messages @@ -4562,10 +4562,10 @@ The max size in bytes for incoming gRPC messages config.KubeClientConfig (kubeClientConfig) -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ qps (int32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max QPS to the master for requests to KubeAPI. 0 defaults to 5. @@ -4577,7 +4577,7 @@ Max QPS to the master for requests to KubeAPI. 0 defaults to 5. burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max burst rate for throttle. 0 defaults to 10 @@ -4589,7 +4589,7 @@ Max burst rate for throttle. 0 defaults to 10 timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max duration allowed for every request to KubeAPI before giving up. 0 implies no timeout. @@ -4601,10 +4601,10 @@ Max duration allowed for every request to KubeAPI before giving up. 0 implies no config.ServerSecurityOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ secure (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4614,7 +4614,7 @@ secure (bool) ssl (`config.SslOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4625,7 +4625,7 @@ ssl (`config.SslOptions`_) useAuth (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4635,7 +4635,7 @@ useAuth (bool) auditAccess (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4645,7 +4645,7 @@ auditAccess (bool) allowCors (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4655,7 +4655,7 @@ allowCors (bool) allowedOrigins ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4665,7 +4665,7 @@ allowedOrigins ([]string) allowedHeaders ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4676,10 +4676,10 @@ allowedHeaders ([]string) config.SslOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ certificateFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4689,7 +4689,7 @@ certificateFile (string) keyFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4699,10 +4699,10 @@ keyFile (string) Section: storage -================================================================================ +======================================================================================================================== type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the type of storage to configure [s3/minio/local/mem/stow]. @@ -4714,7 +4714,7 @@ Sets the type of storage to configure [s3/minio/local/mem/stow]. connection (`storage.ConnectionConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4729,7 +4729,7 @@ connection (`storage.ConnectionConfig`_) stow (`storage.StowConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Storage config for stow backend. @@ -4741,7 +4741,7 @@ Storage config for stow backend. container (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Initial container (in s3 a bucket) to create -if it doesn't exist-.' @@ -4753,7 +4753,7 @@ Initial container (in s3 a bucket) to create -if it doesn't exist-.' enable-multicontainer (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ If this is true, then the container argument is overlooked and redundant. This config will automatically open new connections to new containers/buckets as they are encountered @@ -4765,7 +4765,7 @@ If this is true, then the container argument is overlooked and redundant. This c cache (`storage.CachingConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4776,7 +4776,7 @@ cache (`storage.CachingConfig`_) limits (`storage.LimitsConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets limits for stores. @@ -4788,7 +4788,7 @@ Sets limits for stores. defaultHttpClient (`storage.HTTPClientConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the default http client config. @@ -4801,7 +4801,7 @@ Sets the default http client config. signedUrl (`storage.SignedURLConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets config for SignedURL. @@ -4813,10 +4813,10 @@ Sets config for SignedURL. storage.CachingConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ max_size_mbs (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum size of the cache where the Blob store data is cached in-memory. If not specified or set to 0, cache is not used @@ -4828,7 +4828,7 @@ Maximum size of the cache where the Blob store data is cached in-memory. If not target_gc_percent (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets the garbage collection target percentage. @@ -4840,10 +4840,10 @@ Sets the garbage collection target percentage. storage.ConnectionConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ endpoint (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" URL for storage client to connect to. @@ -4855,7 +4855,7 @@ URL for storage client to connect to. auth-type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Auth Type to use [iam,accesskey]. @@ -4867,7 +4867,7 @@ Auth Type to use [iam,accesskey]. access-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Access key to use. Only required when authtype is set to accesskey. @@ -4879,7 +4879,7 @@ Access key to use. Only required when authtype is set to accesskey. secret-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Secret to use when accesskey is set. @@ -4891,7 +4891,7 @@ Secret to use when accesskey is set. region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Region to connect to. @@ -4903,7 +4903,7 @@ Region to connect to. disable-ssl (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Disables SSL connection. Should only be used for development. @@ -4915,10 +4915,10 @@ Disables SSL connection. Should only be used for development. storage.HTTPClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ headers (map[string][]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4928,7 +4928,7 @@ headers (map[string][]string) timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets time out on the http client. @@ -4940,10 +4940,10 @@ Sets time out on the http client. storage.LimitsConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxDownloadMBs (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed download size (in MBs) per call. @@ -4955,10 +4955,10 @@ Maximum allowed download size (in MBs) per call. storage.SignedURLConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ stowConfigOverride (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4968,10 +4968,10 @@ stowConfigOverride (map[string]string) storage.StowConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ kind (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Kind of Stow backend to use. Refer to github/flyteorg/stow @@ -4983,7 +4983,7 @@ Kind of Stow backend to use. Refer to github/flyteorg/stow config (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Configuration for stow backend. Refer to github/flyteorg/stow @@ -4995,10 +4995,10 @@ Configuration for stow backend. Refer to github/flyteorg/stow Section: task_resources -================================================================================ +======================================================================================================================== defaults (`interfaces.TaskResourceSet`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -5012,7 +5012,7 @@ defaults (`interfaces.TaskResourceSet`_) limits (`interfaces.TaskResourceSet`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -5026,10 +5026,10 @@ limits (`interfaces.TaskResourceSet`_) interfaces.TaskResourceSet -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cpu (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5039,7 +5039,7 @@ cpu (`resource.Quantity`_) gpu (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5049,7 +5049,7 @@ gpu (`resource.Quantity`_) memory (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5059,7 +5059,7 @@ memory (`resource.Quantity`_) storage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5069,7 +5069,7 @@ storage (`resource.Quantity`_) ephemeralStorage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: diff --git a/rsts/deployment/configuration/generated/flytepropeller_config.rst b/rsts/deployment/configuration/generated/flytepropeller_config.rst index cd798f11ec..8982c6e742 100644 --- a/rsts/deployment/configuration/generated/flytepropeller_config.rst +++ b/rsts/deployment/configuration/generated/flytepropeller_config.rst @@ -733,8 +733,14 @@ agent-service (`agent.Config`_) .. code-block:: yaml - defaultGrpcEndpoint: dns:///flyte-agent.flyte.svc.cluster.local:80 - endpointForTaskTypes: null + agentForTaskTypes: null + agents: null + defaultAgent: + defaultServiceConfig: "" + defaultTimeout: 10s + endpoint: dns:///flyte-agent.flyte.svc.cluster.local:80 + insecure: true + timeouts: null resourceConstraints: NamespaceScopeResourceConstraint: Value: 50 @@ -1213,19 +1219,35 @@ resourceConstraints (`core.ResourceConstraintsSpec`_) Value: 100 -defaultGrpcEndpoint (string) +defaultAgent (`agent.Agent`_) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -The default grpc endpoint of agent service. +The default agent. **Default Value**: .. code-block:: yaml - dns:///flyte-agent.flyte.svc.cluster.local:80 + defaultServiceConfig: "" + defaultTimeout: 10s + endpoint: dns:///flyte-agent.flyte.svc.cluster.local:80 + insecure: true + timeouts: null + + +agents (map[string]*agent.Agent) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +The agents. + +**Default Value**: + +.. code-block:: yaml + + null -endpointForTaskTypes (map[string]string) +agentForTaskTypes (map[string]string) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1246,6 +1268,59 @@ supportedTaskTypes ([]string) - task_type_2 +agent.Agent +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +endpoint (string) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +**Default Value**: + +.. code-block:: yaml + + dns:///flyte-agent.flyte.svc.cluster.local:80 + + +insecure (bool) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +**Default Value**: + +.. code-block:: yaml + + "true" + + +defaultServiceConfig (string) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +**Default Value**: + +.. code-block:: yaml + + "" + + +timeouts (map[string]config.Duration) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +**Default Value**: + +.. code-block:: yaml + + null + + +defaultTimeout (`config.Duration`_) +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +**Default Value**: + +.. code-block:: yaml + + 10s + + core.ResourceConstraintsSpec ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/rsts/deployment/configuration/generated/scheduler_config.rst b/rsts/deployment/configuration/generated/scheduler_config.rst index 8b644ec332..02764c8e71 100644 --- a/rsts/deployment/configuration/generated/scheduler_config.rst +++ b/rsts/deployment/configuration/generated/scheduler_config.rst @@ -53,10 +53,10 @@ Flyte Scheduler Configuration - `task_type_whitelist <#section-task_type_whitelist>`_ Section: admin -================================================================================ +======================================================================================================================== endpoint (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ For admin types, specify where the uri of the service is located. @@ -68,7 +68,7 @@ For admin types, specify where the uri of the service is located. insecure (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use insecure connection. @@ -80,7 +80,7 @@ Use insecure connection. insecureSkipVerify (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ InsecureSkipVerify controls whether a client verifies the server's certificate chain and host name. Caution : shouldn't be use for production usecases' @@ -92,7 +92,7 @@ InsecureSkipVerify controls whether a client verifies the server's certificate c caCertFilePath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use specified certificate file to verify the admin server peer. @@ -104,7 +104,7 @@ Use specified certificate file to verify the admin server peer. maxBackoffDelay (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max delay for grpc backoff @@ -116,7 +116,7 @@ Max delay for grpc backoff perRetryTimeout (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ gRPC per retry timeout @@ -128,7 +128,7 @@ gRPC per retry timeout maxRetries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max number of gRPC retries @@ -140,7 +140,7 @@ Max number of gRPC retries authType (uint8) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Type of OAuth2 flow used for communicating with admin.ClientSecret,Pkce,ExternalCommand are valid values @@ -152,7 +152,7 @@ Type of OAuth2 flow used for communicating with admin.ClientSecret,Pkce,External tokenRefreshWindow (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Max duration between token refresh attempt and token expiry. @@ -164,7 +164,7 @@ Max duration between token refresh attempt and token expiry. useAuth (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Deprecated: Auth will be enabled/disabled based on admin's dynamically discovered information. @@ -176,7 +176,7 @@ Deprecated: Auth will be enabled/disabled based on admin's dynamically discovere clientId (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Client ID @@ -188,7 +188,7 @@ Client ID clientSecretLocation (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ File containing the client secret @@ -200,7 +200,7 @@ File containing the client secret clientSecretEnvVar (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Environment variable containing the client secret @@ -212,7 +212,7 @@ Environment variable containing the client secret scopes ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ List of scopes to request @@ -224,7 +224,7 @@ List of scopes to request useAudienceFromAdmin (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Use Audience configured from admins public endpoint config. @@ -236,7 +236,7 @@ Use Audience configured from admins public endpoint config. audience (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Audience to use when initiating OAuth2 authorization requests. @@ -248,7 +248,7 @@ Audience to use when initiating OAuth2 authorization requests. authorizationServerUrl (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ This is the URL to your IdP's authorization server. It'll default to Endpoint @@ -260,7 +260,7 @@ This is the URL to your IdP's authorization server. It'll default to Endpoint tokenUrl (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: Your IdP's token endpoint. It'll be discovered from flyte admin's OAuth Metadata endpoint if not provided. @@ -272,7 +272,7 @@ OPTIONAL: Your IdP's token endpoint. It'll be discovered from flyte admin's OAut authorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Custom metadata header to pass JWT @@ -284,7 +284,7 @@ Custom metadata header to pass JWT pkceConfig (`pkce.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for Pkce authentication flow. @@ -297,7 +297,7 @@ Config for Pkce authentication flow. deviceFlowConfig (`deviceflow.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for Device authentication flow. @@ -311,7 +311,7 @@ Config for Device authentication flow. command ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Command for external authentication token generation @@ -323,7 +323,7 @@ Command for external authentication token generation defaultServiceConfig (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -333,7 +333,7 @@ defaultServiceConfig (string) httpProxyURL (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -345,10 +345,10 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. config.Duration -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Duration (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -358,10 +358,10 @@ Duration (int64) config.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ URL (`url.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -381,10 +381,10 @@ URL (`url.URL`_) url.URL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -394,7 +394,7 @@ Scheme (string) Opaque (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -404,7 +404,7 @@ Opaque (string) User (url.Userinfo) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -414,7 +414,7 @@ User (url.Userinfo) Host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -424,7 +424,7 @@ Host (string) Path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -434,7 +434,7 @@ Path (string) RawPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -444,7 +444,7 @@ RawPath (string) OmitHost (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -454,7 +454,7 @@ OmitHost (bool) ForceQuery (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -464,7 +464,7 @@ ForceQuery (bool) RawQuery (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -474,7 +474,7 @@ RawQuery (string) Fragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -484,7 +484,7 @@ Fragment (string) RawFragment (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -494,10 +494,10 @@ RawFragment (string) deviceflow.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ refreshTime (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" grace period from the token expiry after which it would refresh the token. @@ -509,7 +509,7 @@ grace period from the token expiry after which it would refresh the token. timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" amount of time the device flow should complete or else it will be cancelled. @@ -521,7 +521,7 @@ amount of time the device flow should complete or else it will be cancelled. pollInterval (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" amount of time the device flow would poll the token endpoint if auth server doesn't return a polling interval. Okta and google IDP do return an interval' @@ -533,10 +533,10 @@ amount of time the device flow would poll the token endpoint if auth server does pkce.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Amount of time the browser session would be active for authentication from client app. @@ -548,7 +548,7 @@ Amount of time the browser session would be active for authentication from clien refreshTime (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" grace period from the token expiry after which it would refresh the token. @@ -560,10 +560,10 @@ grace period from the token expiry after which it would refresh the token. Section: auth -================================================================================ +======================================================================================================================== httpAuthorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -573,7 +573,7 @@ httpAuthorizationHeader (string) grpcAuthorizationHeader (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -583,7 +583,7 @@ grpcAuthorizationHeader (string) disableForHttp (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Disables auth enforcement on HTTP Endpoints. @@ -595,7 +595,7 @@ Disables auth enforcement on HTTP Endpoints. disableForGrpc (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Disables auth enforcement on Grpc Endpoints. @@ -607,7 +607,7 @@ Disables auth enforcement on Grpc Endpoints. authorizedUris ([]config.URL) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -617,7 +617,7 @@ authorizedUris ([]config.URL) httpProxyURL (`config.URL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -629,7 +629,7 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. userAuth (`config.UserAuthConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines Auth options for users. @@ -655,7 +655,7 @@ Defines Auth options for users. appAuth (`config.OAuth2Options`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines Auth options for apps. UserAuth must be enabled for AppAuth to work. @@ -739,10 +739,10 @@ Defines Auth options for apps. UserAuth must be enabled for AppAuth to work. config.OAuth2Options -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ authServerType (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -752,7 +752,7 @@ authServerType (int) selfAuthServer (`config.AuthorizationServer`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Authorization Server config to run as a service. Use this when using an IdP that does not offer a custom OAuth2 Authorization Server. @@ -821,7 +821,7 @@ Authorization Server config to run as a service. Use this when using an IdP that externalAuthServer (`config.ExternalAuthorizationServer`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" External Authorization Server config. @@ -836,7 +836,7 @@ External Authorization Server config. thirdPartyConfig (`config.ThirdPartyConfigOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines settings to instruct flyte cli tools (and optionally others) on what config to use to setup their client. @@ -854,10 +854,10 @@ Defines settings to instruct flyte cli tools (and optionally others) on what con config.AuthorizationServer -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ issuer (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the issuer to use when issuing and validating tokens. The default value is https:/// @@ -869,7 +869,7 @@ Defines the issuer to use when issuing and validating tokens. The default value accessTokenLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -881,7 +881,7 @@ Defines the lifespan of issued access tokens. refreshTokenLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -893,7 +893,7 @@ Defines the lifespan of issued access tokens. authorizationCodeLifespan (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines the lifespan of issued access tokens. @@ -905,7 +905,7 @@ Defines the lifespan of issued access tokens. claimSymmetricEncryptionKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to encrypt claims in authcode token. @@ -917,7 +917,7 @@ OPTIONAL: Secret name to use to encrypt claims in authcode token. tokenSigningRSAKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to retrieve RSA Signing Key. @@ -929,7 +929,7 @@ OPTIONAL: Secret name to use to retrieve RSA Signing Key. oldTokenSigningRSAKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use to retrieve Old RSA Signing Key. This can be useful during key rotation to continue to accept older tokens. @@ -941,7 +941,7 @@ OPTIONAL: Secret name to use to retrieve Old RSA Signing Key. This can be useful staticClients (map[string]*fosite.DefaultClient) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1000,10 +1000,10 @@ staticClients (map[string]*fosite.DefaultClient) config.ExternalAuthorizationServer -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ baseUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" This should be the base url of the authorization server that you are trying to hit. With Okta for instance, it will look something like https://company.okta.com/oauth2/abcdef123456789/ @@ -1015,7 +1015,7 @@ This should be the base url of the authorization server that you are trying to h allowedAudience ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Optional: A list of allowed audiences. If not provided, the audience is expected to be the public Uri of the service. @@ -1027,7 +1027,7 @@ Optional: A list of allowed audiences. If not provided, the audience is expected metadataUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Optional: If the server doesn't support /.well-known/oauth-authorization-server, you can set a custom metadata url here.' @@ -1039,7 +1039,7 @@ Optional: If the server doesn't support /.well-known/oauth-authorization-server, httpProxyURL (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -1051,10 +1051,10 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. config.ThirdPartyConfigOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ flyteClient (`config.FlyteClientConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1069,10 +1069,10 @@ flyteClient (`config.FlyteClientConfig`_) config.FlyteClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ clientId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" public identifier for the app which handles authorization for a Flyte deployment @@ -1084,7 +1084,7 @@ public identifier for the app which handles authorization for a Flyte deployment redirectUri (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" This is the callback uri registered with the app which handles authorization for a Flyte deployment @@ -1096,7 +1096,7 @@ This is the callback uri registered with the app which handles authorization for scopes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Recommended scopes for the client to request. @@ -1109,7 +1109,7 @@ Recommended scopes for the client to request. audience (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Audience to use when initiating OAuth2 authorization requests. @@ -1121,10 +1121,10 @@ Audience to use when initiating OAuth2 authorization requests. config.UserAuthConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ redirectUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1134,7 +1134,7 @@ redirectUrl (`config.URL`_) openId (`config.OpenIDOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OpenID Configuration for User Auth @@ -1152,7 +1152,7 @@ OpenID Configuration for User Auth httpProxyURL (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: HTTP Proxy to be used for OAuth requests. @@ -1164,7 +1164,7 @@ OPTIONAL: HTTP Proxy to be used for OAuth requests. cookieHashKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use for cookie hash key. @@ -1176,7 +1176,7 @@ OPTIONAL: Secret name to use for cookie hash key. cookieBlockKeySecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Secret name to use for cookie block key. @@ -1188,7 +1188,7 @@ OPTIONAL: Secret name to use for cookie block key. cookieSetting (`config.CookieSettings`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" settings used by cookies created for user auth @@ -1201,10 +1201,10 @@ settings used by cookies created for user auth config.CookieSettings -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ sameSitePolicy (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Allows you to declare if your cookie should be restricted to a first-party or same-site context.Wrapper around http.SameSite. @@ -1216,7 +1216,7 @@ OPTIONAL: Allows you to declare if your cookie should be restricted to a first-p domain (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" OPTIONAL: Allows you to set the domain attribute on the auth cookies. @@ -1228,10 +1228,10 @@ OPTIONAL: Allows you to set the domain attribute on the auth cookies. config.OpenIDOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ clientId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1241,7 +1241,7 @@ clientId (string) clientSecretName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1251,7 +1251,7 @@ clientSecretName (string) clientSecretFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1261,7 +1261,7 @@ clientSecretFile (string) baseUrl (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1271,7 +1271,7 @@ baseUrl (`config.URL`_) scopes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1282,10 +1282,10 @@ scopes ([]string) Section: cloudevents -================================================================================ +======================================================================================================================== enable (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1295,7 +1295,7 @@ enable (bool) type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1305,7 +1305,7 @@ type (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1315,7 +1315,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1325,7 +1325,7 @@ gcp (`interfaces.GCPConfig`_) kafka (`interfaces.KafkaConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1336,7 +1336,7 @@ kafka (`interfaces.KafkaConfig`_) eventsPublisher (`interfaces.EventsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1347,7 +1347,7 @@ eventsPublisher (`interfaces.EventsPublisherConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1357,7 +1357,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1367,10 +1367,10 @@ reconnectDelaySeconds (int) interfaces.AWSConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1380,10 +1380,10 @@ region (string) interfaces.EventsPublisherConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ topicName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1393,7 +1393,7 @@ topicName (string) eventTypes ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1403,10 +1403,10 @@ eventTypes ([]string) interfaces.GCPConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ projectId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1416,10 +1416,10 @@ projectId (string) interfaces.KafkaConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ version (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1429,7 +1429,7 @@ version (string) brokers ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -1439,10 +1439,10 @@ brokers ([]string) Section: cluster_resources -================================================================================ +======================================================================================================================== templatePath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1452,7 +1452,7 @@ templatePath (string) templateData (map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1462,7 +1462,7 @@ templateData (map[string]interfaces.DataSource) refreshInterval (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1472,7 +1472,7 @@ refreshInterval (`config.Duration`_) customData (map[string]map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1482,7 +1482,7 @@ customData (map[string]map[string]interfaces.DataSource) standaloneDeployment (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether the cluster resource sync is running in a standalone deployment and should call flyteadmin service endpoints @@ -1494,10 +1494,10 @@ Whether the cluster resource sync is running in a standalone deployment and shou Section: clusters -================================================================================ +======================================================================================================================== clusterConfigs ([]interfaces.ClusterConfig) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1507,7 +1507,7 @@ clusterConfigs ([]interfaces.ClusterConfig) labelClusterMap (map[string][]interfaces.ClusterEntity) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1517,7 +1517,7 @@ labelClusterMap (map[string][]interfaces.ClusterEntity) defaultExecutionLabel (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1527,10 +1527,10 @@ defaultExecutionLabel (string) Section: database -================================================================================ +======================================================================================================================== host (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1540,7 +1540,7 @@ host (string) port (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1550,7 +1550,7 @@ port (int) dbname (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1560,7 +1560,7 @@ dbname (string) username (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1570,7 +1570,7 @@ username (string) password (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1580,7 +1580,7 @@ password (string) passwordPath (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1590,7 +1590,7 @@ passwordPath (string) options (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1600,7 +1600,7 @@ options (string) debug (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1610,7 +1610,7 @@ debug (bool) enableForeignKeyConstraintWhenMigrating (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Whether to enable gorm foreign keys when migrating the db @@ -1622,7 +1622,7 @@ Whether to enable gorm foreign keys when migrating the db maxIdleConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxIdleConnections sets the maximum number of connections in the idle connection pool. @@ -1634,7 +1634,7 @@ maxIdleConnections sets the maximum number of connections in the idle connection maxOpenConnections (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ maxOpenConnections sets the maximum number of open connections to the database. @@ -1646,7 +1646,7 @@ maxOpenConnections sets the maximum number of open connections to the database. connMaxLifeTime (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ sets the maximum amount of time a connection may be reused @@ -1658,7 +1658,7 @@ sets the maximum amount of time a connection may be reused postgres (`database.PostgresConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1675,7 +1675,7 @@ postgres (`database.PostgresConfig`_) sqlite (`database.SQLiteConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1685,10 +1685,10 @@ sqlite (`database.SQLiteConfig`_) database.PostgresConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ host (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The host name of the database server @@ -1700,7 +1700,7 @@ The host name of the database server port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The port name of the database server @@ -1712,7 +1712,7 @@ The port name of the database server dbname (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database name @@ -1724,7 +1724,7 @@ The database name username (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database user who is connecting to the server. @@ -1736,7 +1736,7 @@ The database user who is connecting to the server. password (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The database password. @@ -1748,7 +1748,7 @@ The database password. passwordPath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Points to the file containing the database password. @@ -1760,7 +1760,7 @@ Points to the file containing the database password. options (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" See http://gorm.io/docs/connecting_to_the_database.html for available options passed, in addition to the above. @@ -1772,7 +1772,7 @@ See http://gorm.io/docs/connecting_to_the_database.html for available options pa debug (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether or not to start the database connection with debug mode enabled. @@ -1784,10 +1784,10 @@ Whether or not to start the database connection with debug mode enabled. database.SQLiteConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ file (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The path to the file (existing or new) where the DB should be created / stored. If existing, then this will be re-used, else a new will be created @@ -1799,10 +1799,10 @@ The path to the file (existing or new) where the DB should be created / stored. Section: domains -================================================================================ +======================================================================================================================== id (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1812,7 +1812,7 @@ id (string) name (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1822,10 +1822,10 @@ name (string) Section: externalevents -================================================================================ +======================================================================================================================== enable (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1835,7 +1835,7 @@ enable (bool) type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1845,7 +1845,7 @@ type (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1855,7 +1855,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1865,7 +1865,7 @@ gcp (`interfaces.GCPConfig`_) eventsPublisher (`interfaces.EventsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1876,7 +1876,7 @@ eventsPublisher (`interfaces.EventsPublisherConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1886,7 +1886,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1896,10 +1896,10 @@ reconnectDelaySeconds (int) Section: flyteadmin -================================================================================ +======================================================================================================================== roleNameKey (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1909,7 +1909,7 @@ roleNameKey (string) metricsScope (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1919,7 +1919,7 @@ metricsScope (string) metricsKeys ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1937,7 +1937,7 @@ metricsKeys ([]string) profilerPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1947,7 +1947,7 @@ profilerPort (int) metadataStoragePrefix ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1958,7 +1958,7 @@ metadataStoragePrefix ([]string) eventVersion (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1968,7 +1968,7 @@ eventVersion (int) asyncEventsBufferSize (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1978,7 +1978,7 @@ asyncEventsBufferSize (int) maxParallelism (int32) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1988,7 +1988,7 @@ maxParallelism (int32) labels (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -1998,7 +1998,7 @@ labels (map[string]string) annotations (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2008,7 +2008,7 @@ annotations (map[string]string) interruptible (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2018,7 +2018,7 @@ interruptible (bool) overwriteCache (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2028,7 +2028,7 @@ overwriteCache (bool) assumableIamRole (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2038,7 +2038,7 @@ assumableIamRole (string) k8sServiceAccount (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2048,7 +2048,7 @@ k8sServiceAccount (string) outputLocationPrefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2058,7 +2058,7 @@ outputLocationPrefix (string) useOffloadedWorkflowClosure (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2068,7 +2068,7 @@ useOffloadedWorkflowClosure (bool) envs (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2078,10 +2078,10 @@ envs (map[string]string) Section: logger -================================================================================ +======================================================================================================================== show-source (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Includes source code location in logs. @@ -2093,7 +2093,7 @@ Includes source code location in logs. mute (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Mutes all logs regardless of severity. Intended for benchmarks/tests only. @@ -2105,7 +2105,7 @@ Mutes all logs regardless of severity. Intended for benchmarks/tests only. level (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the minimum logging level. @@ -2117,7 +2117,7 @@ Sets the minimum logging level. formatter (`logger.FormatterConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets logging format. @@ -2129,10 +2129,10 @@ Sets logging format. logger.FormatterConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets logging format type. @@ -2144,10 +2144,10 @@ Sets logging format type. Section: namespace_mapping -================================================================================ +======================================================================================================================== mapping (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2157,7 +2157,7 @@ mapping (string) template (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2167,7 +2167,7 @@ template (string) templateData (map[string]interfaces.DataSource) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2177,10 +2177,10 @@ templateData (map[string]interfaces.DataSource) Section: notifications -================================================================================ +======================================================================================================================== type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2190,7 +2190,7 @@ type (string) region (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2200,7 +2200,7 @@ region (string) aws (`interfaces.AWSConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2210,7 +2210,7 @@ aws (`interfaces.AWSConfig`_) gcp (`interfaces.GCPConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2220,7 +2220,7 @@ gcp (`interfaces.GCPConfig`_) publisher (`interfaces.NotificationsPublisherConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2230,7 +2230,7 @@ publisher (`interfaces.NotificationsPublisherConfig`_) processor (`interfaces.NotificationsProcessorConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2241,7 +2241,7 @@ processor (`interfaces.NotificationsProcessorConfig`_) emailer (`interfaces.NotificationsEmailerConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2257,7 +2257,7 @@ emailer (`interfaces.NotificationsEmailerConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2267,7 +2267,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2277,10 +2277,10 @@ reconnectDelaySeconds (int) interfaces.NotificationsEmailerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ emailServerConfig (`interfaces.EmailServerConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2292,7 +2292,7 @@ emailServerConfig (`interfaces.EmailServerConfig`_) subject (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2302,7 +2302,7 @@ subject (string) sender (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2312,7 +2312,7 @@ sender (string) body (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2322,10 +2322,10 @@ body (string) interfaces.EmailServerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ serviceName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2335,7 +2335,7 @@ serviceName (string) apiKeyEnvVar (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2345,7 +2345,7 @@ apiKeyEnvVar (string) apiKeyFilePath (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2355,10 +2355,10 @@ apiKeyFilePath (string) interfaces.NotificationsProcessorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ queueName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2368,7 +2368,7 @@ queueName (string) accountId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2378,10 +2378,10 @@ accountId (string) interfaces.NotificationsPublisherConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ topicName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2391,10 +2391,10 @@ topicName (string) Section: plugins -================================================================================ +======================================================================================================================== catalogcache (`catalog.Config`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2411,7 +2411,7 @@ catalogcache (`catalog.Config`_) k8s (`config.K8sPluginConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -2456,10 +2456,10 @@ k8s (`config.K8sPluginConfig`_) catalog.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ reader (`workqueue.Config`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Catalog reader workqueue config. Make sure the index cache must be big enough to accommodate the biggest array task allowed to run on the system. @@ -2473,7 +2473,7 @@ Catalog reader workqueue config. Make sure the index cache must be big enough to writer (`workqueue.Config`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Catalog writer workqueue config. Make sure the index cache must be big enough to accommodate the biggest array task allowed to run on the system. @@ -2487,10 +2487,10 @@ Catalog writer workqueue config. Make sure the index cache must be big enough to workqueue.Config -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ workers (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Number of concurrent workers to start processing the queue. @@ -2502,7 +2502,7 @@ Number of concurrent workers to start processing the queue. maxRetries (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of retries per item. @@ -2514,7 +2514,7 @@ Maximum number of retries per item. maxItems (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of entries to keep in the index. @@ -2526,10 +2526,10 @@ Maximum number of entries to keep in the index. config.K8sPluginConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ inject-finalizer (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Instructs the plugin to inject a finalizer on startTask and remove it on task termination. @@ -2541,7 +2541,7 @@ Instructs the plugin to inject a finalizer on startTask and remove it on task te default-annotations (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2551,7 +2551,7 @@ default-annotations (map[string]string) default-labels (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2561,7 +2561,7 @@ default-labels (map[string]string) default-env-vars (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2571,7 +2571,7 @@ default-env-vars (map[string]string) default-env-vars-from-env (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2581,7 +2581,7 @@ default-env-vars-from-env (map[string]string) default-cpus (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines a default value for cpu for containers if not specified. @@ -2593,7 +2593,7 @@ Defines a default value for cpu for containers if not specified. default-memory (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines a default value for memory for containers if not specified. @@ -2605,7 +2605,7 @@ Defines a default value for memory for containers if not specified. default-tolerations ([]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2615,7 +2615,7 @@ default-tolerations ([]v1.Toleration) default-node-selector (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2625,7 +2625,7 @@ default-node-selector (map[string]string) default-affinity (v1.Affinity) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2635,7 +2635,7 @@ default-affinity (v1.Affinity) scheduler-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines scheduler name. @@ -2647,7 +2647,7 @@ Defines scheduler name. interruptible-tolerations ([]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2657,7 +2657,7 @@ interruptible-tolerations ([]v1.Toleration) interruptible-node-selector (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2667,7 +2667,7 @@ interruptible-node-selector (map[string]string) interruptible-node-selector-requirement (v1.NodeSelectorRequirement) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2677,7 +2677,7 @@ interruptible-node-selector-requirement (v1.NodeSelectorRequirement) non-interruptible-node-selector-requirement (v1.NodeSelectorRequirement) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2687,7 +2687,7 @@ non-interruptible-node-selector-requirement (v1.NodeSelectorRequirement) resource-tolerations (map[v1.ResourceName][]v1.Toleration) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2697,7 +2697,7 @@ resource-tolerations (map[v1.ResourceName][]v1.Toleration) co-pilot (`config.FlyteCoPilotConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Co-Pilot Configuration @@ -2718,7 +2718,7 @@ Co-Pilot Configuration delete-resource-on-finalize (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Instructs the system to delete the resource upon successful execution of a k8s pod rather than have the k8s garbage collector clean it up. This ensures that no resources are kept around (potentially consuming cluster resources). This, however, will cause k8s log links to expire as soon as the resource is finalized. @@ -2730,7 +2730,7 @@ Instructs the system to delete the resource upon successful execution of a k8s p create-container-error-grace-period (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2740,7 +2740,7 @@ create-container-error-grace-period (`config.Duration`_) gpu-resource-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2750,7 +2750,7 @@ gpu-resource-name (string) default-pod-security-context (v1.PodSecurityContext) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2760,7 +2760,7 @@ default-pod-security-context (v1.PodSecurityContext) default-security-context (v1.SecurityContext) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2770,7 +2770,7 @@ default-security-context (v1.SecurityContext) enable-host-networking-pod (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2780,7 +2780,7 @@ enable-host-networking-pod (bool) default-pod-dns-config (v1.PodDNSConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2790,7 +2790,7 @@ default-pod-dns-config (v1.PodDNSConfig) default-pod-template-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the PodTemplate to use as the base for all k8s pods created by FlytePropeller. @@ -2802,7 +2802,7 @@ Name of the PodTemplate to use as the base for all k8s pods created by FlyteProp default-pod-template-resync (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Frequency of resyncing default pod templates @@ -2814,10 +2814,10 @@ Frequency of resyncing default pod templates config.FlyteCoPilotConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Flyte co-pilot sidecar container name prefix. (additional bits will be added after this) @@ -2829,7 +2829,7 @@ Flyte co-pilot sidecar container name prefix. (additional bits will be added aft image (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Flyte co-pilot Docker Image FQN @@ -2841,7 +2841,7 @@ Flyte co-pilot Docker Image FQN default-input-path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default path where the volume should be mounted @@ -2853,7 +2853,7 @@ Default path where the volume should be mounted default-output-path (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default path where the volume should be mounted @@ -2865,7 +2865,7 @@ Default path where the volume should be mounted input-vol-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the data volume that is created for storing inputs @@ -2877,7 +2877,7 @@ Name of the data volume that is created for storing inputs output-vol-name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Name of the data volume that is created for storing outputs @@ -2889,7 +2889,7 @@ Name of the data volume that is created for storing outputs start-timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2899,7 +2899,7 @@ start-timeout (`config.Duration`_) cpu (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Used to set cpu for co-pilot containers @@ -2911,7 +2911,7 @@ Used to set cpu for co-pilot containers memory (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Used to set memory for co-pilot containers @@ -2923,7 +2923,7 @@ Used to set memory for co-pilot containers storage (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default storage limit for individual inputs / outputs @@ -2935,10 +2935,10 @@ Default storage limit for individual inputs / outputs resource.Quantity -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ i (`resource.int64Amount`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2948,7 +2948,7 @@ i (`resource.int64Amount`_) d (`resource.infDecAmount`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2958,7 +2958,7 @@ d (`resource.infDecAmount`_) s (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2968,7 +2968,7 @@ s (string) Format (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2978,10 +2978,10 @@ Format (string) resource.infDecAmount -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Dec (inf.Dec) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -2991,10 +2991,10 @@ Dec (inf.Dec) resource.int64Amount -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ value (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3004,7 +3004,7 @@ value (int64) scale (int32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3014,10 +3014,10 @@ scale (int32) Section: propeller -================================================================================ +======================================================================================================================== kube-config (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Path to kubernetes client config file. @@ -3029,7 +3029,7 @@ Path to kubernetes client config file. master (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3039,7 +3039,7 @@ master (string) workers (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Number of threads to process workflows @@ -3051,7 +3051,7 @@ Number of threads to process workflows workflow-reeval-duration (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Frequency of re-evaluating workflows @@ -3063,7 +3063,7 @@ Frequency of re-evaluating workflows downstream-eval-duration (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Frequency of re-evaluating downstream tasks @@ -3075,7 +3075,7 @@ Frequency of re-evaluating downstream tasks limit-namespace (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Namespaces to watch for this propeller @@ -3087,7 +3087,7 @@ Namespaces to watch for this propeller prof-port (`config.Port`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Profiler port @@ -3099,7 +3099,7 @@ Profiler port metadata-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ MetadataPrefix should be used if all the metadata for Flyte executions should be stored under a specific prefix in CloudStorage. If not specified, the data will be stored in the base container directly. @@ -3111,7 +3111,7 @@ MetadataPrefix should be used if all the metadata for Flyte executions should be rawoutput-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ a fully qualified storage path of the form s3://flyte/abc/..., where all data sandboxes should be stored. @@ -3123,7 +3123,7 @@ a fully qualified storage path of the form s3://flyte/abc/..., where all data sa queue (`config.CompositeQueueConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Workflow workqueue configuration, affects the way the work is consumed from the queue. @@ -3149,7 +3149,7 @@ Workflow workqueue configuration, affects the way the work is consumed from the metrics-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ An optional prefix for all published metrics. @@ -3161,7 +3161,7 @@ An optional prefix for all published metrics. metrics-keys ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Metrics labels applied to prometheus metrics emitted by the service. @@ -3176,7 +3176,7 @@ Metrics labels applied to prometheus metrics emitted by the service. enable-admin-launcher (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable remote Workflow launcher to Admin @@ -3188,7 +3188,7 @@ Enable remote Workflow launcher to Admin max-workflow-retries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of retries per workflow @@ -3200,7 +3200,7 @@ Maximum number of retries per workflow max-ttl-hours (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of hours a completed workflow should be retained. Number between 1-23 hours @@ -3212,7 +3212,7 @@ Maximum number of hours a completed workflow should be retained. Number between gc-interval (`config.Duration`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Run periodic GC every 30 minutes @@ -3224,7 +3224,7 @@ Run periodic GC every 30 minutes leader-election (`config.LeaderElectionConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Config for leader election. @@ -3242,7 +3242,7 @@ Config for leader election. publish-k8s-events (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable events publishing to K8s events API. @@ -3254,7 +3254,7 @@ Enable events publishing to K8s events API. max-output-size-bytes (int64) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum size of outputs per task @@ -3266,7 +3266,7 @@ Maximum size of outputs per task enable-grpc-latency-metrics (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable grpc latency metrics. Note Histograms metrics can be expensive on Prometheus servers. @@ -3278,7 +3278,7 @@ Enable grpc latency metrics. Note Histograms metrics can be expensive on Prometh kube-client-config (`config.KubeClientConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configuration to control the Kubernetes client @@ -3292,7 +3292,7 @@ Configuration to control the Kubernetes client node-config (`config.NodeConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ config for a workflow node @@ -3309,7 +3309,7 @@ config for a workflow node max-streak-length (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Maximum number of consecutive rounds that one propeller worker can use for one workflow - >1 => turbo-mode is enabled. @@ -3321,7 +3321,7 @@ Maximum number of consecutive rounds that one propeller worker can use for one w event-config (`config.EventConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configures execution event behavior. @@ -3334,7 +3334,7 @@ Configures execution event behavior. include-shard-key-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified shard key label in the k8s FlyteWorkflow CRD label selector @@ -3346,7 +3346,7 @@ Include the specified shard key label in the k8s FlyteWorkflow CRD label selecto exclude-shard-key-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified shard key label from the k8s FlyteWorkflow CRD label selector @@ -3358,7 +3358,7 @@ Exclude the specified shard key label from the k8s FlyteWorkflow CRD label selec include-project-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified project label in the k8s FlyteWorkflow CRD label selector @@ -3370,7 +3370,7 @@ Include the specified project label in the k8s FlyteWorkflow CRD label selector exclude-project-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified project label from the k8s FlyteWorkflow CRD label selector @@ -3382,7 +3382,7 @@ Exclude the specified project label from the k8s FlyteWorkflow CRD label selecto include-domain-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Include the specified domain label in the k8s FlyteWorkflow CRD label selector @@ -3394,7 +3394,7 @@ Include the specified domain label in the k8s FlyteWorkflow CRD label selector exclude-domain-label ([]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector @@ -3406,7 +3406,7 @@ Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector cluster-id (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Unique cluster id running this flytepropeller instance with which to annotate execution events @@ -3418,7 +3418,7 @@ Unique cluster id running this flytepropeller instance with which to annotate ex create-flyteworkflow-crd (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Enable creation of the FlyteWorkflow CRD on startup @@ -3430,10 +3430,10 @@ Enable creation of the FlyteWorkflow CRD on startup config.CompositeQueueConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Type of composite queue to use for the WorkQueue @@ -3445,7 +3445,7 @@ Type of composite queue to use for the WorkQueue queue (`config.WorkqueueConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Workflow workqueue configuration, affects the way the work is consumed from the queue. @@ -3461,7 +3461,7 @@ Workflow workqueue configuration, affects the way the work is consumed from the sub-queue (`config.WorkqueueConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" SubQueue configuration, affects the way the nodes cause the top-level Work to be re-evaluated. @@ -3477,7 +3477,7 @@ SubQueue configuration, affects the way the nodes cause the top-level Work to be batching-interval (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration for which downstream updates are buffered @@ -3489,7 +3489,7 @@ Duration for which downstream updates are buffered batch-size (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3499,10 +3499,10 @@ batch-size (int) config.WorkqueueConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Type of RateLimiter to use for the WorkQueue @@ -3514,7 +3514,7 @@ Type of RateLimiter to use for the WorkQueue base-delay (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" base backoff delay for failure @@ -3526,7 +3526,7 @@ base backoff delay for failure max-delay (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max backoff delay for failure @@ -3538,7 +3538,7 @@ Max backoff delay for failure rate (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Bucket Refill rate per second @@ -3550,7 +3550,7 @@ Bucket Refill rate per second capacity (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Bucket capacity as number of items @@ -3562,10 +3562,10 @@ Bucket capacity as number of items config.EventConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ raw-output-policy (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" How output data should be passed along in execution events. @@ -3577,7 +3577,7 @@ How output data should be passed along in execution events. fallback-to-output-reference (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether output data should be sent by reference when it is too large to be sent inline in execution events. @@ -3589,10 +3589,10 @@ Whether output data should be sent by reference when it is too large to be sent config.KubeClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ qps (float32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3602,7 +3602,7 @@ qps (float32) burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max burst rate for throttle. 0 defaults to 10 @@ -3614,7 +3614,7 @@ Max burst rate for throttle. 0 defaults to 10 timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max duration allowed for every request to KubeAPI before giving up. 0 implies no timeout. @@ -3626,10 +3626,10 @@ Max duration allowed for every request to KubeAPI before giving up. 0 implies no config.LeaderElectionConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ enabled (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Enables/Disables leader election. @@ -3641,7 +3641,7 @@ Enables/Disables leader election. lock-config-map (`types.NamespacedName`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" ConfigMap namespace/name to use for resource lock. @@ -3654,7 +3654,7 @@ ConfigMap namespace/name to use for resource lock. lease-duration (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration that non-leader candidates will wait to force acquire leadership. This is measured against time of last observed ack. @@ -3666,7 +3666,7 @@ Duration that non-leader candidates will wait to force acquire leadership. This renew-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration that the acting master will retry refreshing leadership before giving up. @@ -3678,7 +3678,7 @@ Duration that the acting master will retry refreshing leadership before giving u retry-period (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Duration the LeaderElector clients should wait between tries of actions. @@ -3690,10 +3690,10 @@ Duration the LeaderElector clients should wait between tries of actions. types.NamespacedName -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Namespace (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3703,7 +3703,7 @@ Namespace (string) Name (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3713,10 +3713,10 @@ Name (string) config.NodeConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ default-deadlines (`config.DefaultDeadlines`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value for timeouts @@ -3730,7 +3730,7 @@ Default value for timeouts max-node-retries-system-failures (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum number of retries per node for node failure due to infra issues @@ -3742,7 +3742,7 @@ Maximum number of retries per node for node failure due to infra issues interruptible-failure-threshold (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" number of failures for a node to be still considered interruptible' @@ -3754,10 +3754,10 @@ number of failures for a node to be still considered interruptible' config.DefaultDeadlines -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ node-execution-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of node execution timeout that includes the time spent to run the node/workflow @@ -3769,7 +3769,7 @@ Default value of node execution timeout that includes the time spent to run the node-active-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of node timeout that includes the time spent queued. @@ -3781,7 +3781,7 @@ Default value of node timeout that includes the time spent queued. workflow-active-deadline (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default value of workflow timeout that includes the time spent queued. @@ -3793,10 +3793,10 @@ Default value of workflow timeout that includes the time spent queued. config.Port -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3806,10 +3806,10 @@ port (int) Section: qualityofservice -================================================================================ +======================================================================================================================== tierExecutionValues (map[string]interfaces.QualityOfServiceSpec) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3819,7 +3819,7 @@ tierExecutionValues (map[string]interfaces.QualityOfServiceSpec) defaultTiers (map[string]string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3829,10 +3829,10 @@ defaultTiers (map[string]string) Section: queues -================================================================================ +======================================================================================================================== executionQueues (interfaces.ExecutionQueues) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3842,7 +3842,7 @@ executionQueues (interfaces.ExecutionQueues) workflowConfigs (interfaces.WorkflowConfigs) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3852,10 +3852,10 @@ workflowConfigs (interfaces.WorkflowConfigs) Section: registration -================================================================================ +======================================================================================================================== maxWorkflowNodes (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3865,7 +3865,7 @@ maxWorkflowNodes (int) maxLabelEntries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3875,7 +3875,7 @@ maxLabelEntries (int) maxAnnotationEntries (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3885,7 +3885,7 @@ maxAnnotationEntries (int) workflowSizeLimit (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3895,10 +3895,10 @@ workflowSizeLimit (string) Section: remotedata -================================================================================ +======================================================================================================================== scheme (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3908,7 +3908,7 @@ scheme (string) region (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3918,7 +3918,7 @@ region (string) signedUrls (`interfaces.SignedURL`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3930,7 +3930,7 @@ signedUrls (`interfaces.SignedURL`_) maxSizeInBytes (int64) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -3940,7 +3940,7 @@ maxSizeInBytes (int64) inlineEventDataPolicy (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Specifies how inline execution event data should be saved in the backend @@ -3952,10 +3952,10 @@ Specifies how inline execution event data should be saved in the backend interfaces.SignedURL -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ enabled (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Whether signed urls should even be returned with GetExecutionData, GetNodeExecutionData and GetTaskExecutionData response objects. @@ -3967,7 +3967,7 @@ Whether signed urls should even be returned with GetExecutionData, GetNodeExecut durationMinutes (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3977,7 +3977,7 @@ durationMinutes (int) signingPrincipal (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -3987,10 +3987,10 @@ signingPrincipal (string) Section: scheduler -================================================================================ +======================================================================================================================== profilerPort (`config.Port`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4000,7 +4000,7 @@ profilerPort (`config.Port`_) eventScheduler (`interfaces.EventSchedulerConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4016,7 +4016,7 @@ eventScheduler (`interfaces.EventSchedulerConfig`_) workflowExecutor (`interfaces.WorkflowExecutorConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4035,7 +4035,7 @@ workflowExecutor (`interfaces.WorkflowExecutorConfig`_) reconnectAttempts (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4045,7 +4045,7 @@ reconnectAttempts (int) reconnectDelaySeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4055,10 +4055,10 @@ reconnectDelaySeconds (int) interfaces.EventSchedulerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4068,7 +4068,7 @@ scheme (string) region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4078,7 +4078,7 @@ region (string) scheduleRole (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4088,7 +4088,7 @@ scheduleRole (string) targetName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4098,7 +4098,7 @@ targetName (string) scheduleNamePrefix (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4108,7 +4108,7 @@ scheduleNamePrefix (string) aws (interfaces.AWSSchedulerConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4118,7 +4118,7 @@ aws (interfaces.AWSSchedulerConfig) local (`interfaces.FlyteSchedulerConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4128,13 +4128,13 @@ local (`interfaces.FlyteSchedulerConfig`_) interfaces.FlyteSchedulerConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ interfaces.WorkflowExecutorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ scheme (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4144,7 +4144,7 @@ scheme (string) region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4154,7 +4154,7 @@ region (string) scheduleQueueName (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4164,7 +4164,7 @@ scheduleQueueName (string) accountId (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4174,7 +4174,7 @@ accountId (string) aws (interfaces.AWSWorkflowExecutorConfig) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4184,7 +4184,7 @@ aws (interfaces.AWSWorkflowExecutorConfig) local (`interfaces.FlyteWorkflowExecutorConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4197,10 +4197,10 @@ local (`interfaces.FlyteWorkflowExecutorConfig`_) interfaces.FlyteWorkflowExecutorConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ adminRateLimit (`interfaces.AdminRateLimit`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4211,7 +4211,7 @@ adminRateLimit (`interfaces.AdminRateLimit`_) useUTCTz (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4221,10 +4221,10 @@ useUTCTz (bool) interfaces.AdminRateLimit -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ tps (float64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4234,7 +4234,7 @@ tps (float64) burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4244,10 +4244,10 @@ burst (int) Section: secrets -================================================================================ +======================================================================================================================== secrets-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Prefix where to look for secrets file @@ -4259,7 +4259,7 @@ Prefix where to look for secrets file env-prefix (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Prefix for environment variables @@ -4271,10 +4271,10 @@ Prefix for environment variables Section: server -================================================================================ +======================================================================================================================== httpPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ On which http port to serve admin @@ -4286,7 +4286,7 @@ On which http port to serve admin grpcPort (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ deprecated @@ -4298,7 +4298,7 @@ deprecated grpcServerReflection (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ deprecated @@ -4310,7 +4310,7 @@ deprecated kube-config (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Path to kubernetes client config file, default is empty, useful for incluster config. @@ -4322,7 +4322,7 @@ Path to kubernetes client config file, default is empty, useful for incluster co master (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The address of the Kubernetes API server. @@ -4334,7 +4334,7 @@ The address of the Kubernetes API server. security (`config.ServerSecurityOptions`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4355,7 +4355,7 @@ security (`config.ServerSecurityOptions`_) grpc (`config.GrpcConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4367,7 +4367,7 @@ grpc (`config.GrpcConfig`_) thirdPartyConfig (`config.ThirdPartyConfigOptions`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Deprecated please use auth.appAuth.thirdPartyConfig instead. @@ -4383,7 +4383,7 @@ Deprecated please use auth.appAuth.thirdPartyConfig instead. dataProxy (`config.DataProxyConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Defines data proxy configuration. @@ -4401,7 +4401,7 @@ Defines data proxy configuration. readHeaderTimeoutSeconds (int) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ The amount of time allowed to read request headers. @@ -4413,7 +4413,7 @@ The amount of time allowed to read request headers. kubeClientConfig (`config.KubeClientConfig (kubeClientConfig)`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Configuration to control the Kubernetes client @@ -4427,10 +4427,10 @@ Configuration to control the Kubernetes client config.DataProxyConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ upload (`config.DataProxyUploadConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines data proxy upload configuration. @@ -4445,7 +4445,7 @@ Defines data proxy upload configuration. download (`config.DataProxyDownloadConfig`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Defines data proxy download configuration. @@ -4457,10 +4457,10 @@ Defines data proxy download configuration. config.DataProxyDownloadConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxExpiresIn (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed expiration duration. @@ -4472,10 +4472,10 @@ Maximum allowed expiration duration. config.DataProxyUploadConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxSize (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed upload size. @@ -4487,7 +4487,7 @@ Maximum allowed upload size. maxExpiresIn (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed expiration duration. @@ -4499,7 +4499,7 @@ Maximum allowed expiration duration. defaultFileNameLength (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Default length for the generated file name if not provided in the request. @@ -4511,7 +4511,7 @@ Default length for the generated file name if not provided in the request. storagePrefix (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Storage prefix to use for all upload requests. @@ -4523,10 +4523,10 @@ Storage prefix to use for all upload requests. config.GrpcConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ port (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" On which grpc port to serve admin @@ -4538,7 +4538,7 @@ On which grpc port to serve admin serverReflection (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Enable GRPC Server Reflection @@ -4550,7 +4550,7 @@ Enable GRPC Server Reflection maxMessageSizeBytes (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" The max size in bytes for incoming gRPC messages @@ -4562,10 +4562,10 @@ The max size in bytes for incoming gRPC messages config.KubeClientConfig (kubeClientConfig) -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ qps (int32) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max QPS to the master for requests to KubeAPI. 0 defaults to 5. @@ -4577,7 +4577,7 @@ Max QPS to the master for requests to KubeAPI. 0 defaults to 5. burst (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max burst rate for throttle. 0 defaults to 10 @@ -4589,7 +4589,7 @@ Max burst rate for throttle. 0 defaults to 10 timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Max duration allowed for every request to KubeAPI before giving up. 0 implies no timeout. @@ -4601,10 +4601,10 @@ Max duration allowed for every request to KubeAPI before giving up. 0 implies no config.ServerSecurityOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ secure (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4614,7 +4614,7 @@ secure (bool) ssl (`config.SslOptions`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4625,7 +4625,7 @@ ssl (`config.SslOptions`_) useAuth (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4635,7 +4635,7 @@ useAuth (bool) auditAccess (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4645,7 +4645,7 @@ auditAccess (bool) allowCors (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4655,7 +4655,7 @@ allowCors (bool) allowedOrigins ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4665,7 +4665,7 @@ allowedOrigins ([]string) allowedHeaders ([]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4676,10 +4676,10 @@ allowedHeaders ([]string) config.SslOptions -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ certificateFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4689,7 +4689,7 @@ certificateFile (string) keyFile (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4699,10 +4699,10 @@ keyFile (string) Section: storage -================================================================================ +======================================================================================================================== type (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the type of storage to configure [s3/minio/local/mem/stow]. @@ -4714,7 +4714,7 @@ Sets the type of storage to configure [s3/minio/local/mem/stow]. connection (`storage.ConnectionConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4729,7 +4729,7 @@ connection (`storage.ConnectionConfig`_) stow (`storage.StowConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Storage config for stow backend. @@ -4741,7 +4741,7 @@ Storage config for stow backend. container (string) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Initial container (in s3 a bucket) to create -if it doesn't exist-.' @@ -4753,7 +4753,7 @@ Initial container (in s3 a bucket) to create -if it doesn't exist-.' enable-multicontainer (bool) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ If this is true, then the container argument is overlooked and redundant. This config will automatically open new connections to new containers/buckets as they are encountered @@ -4765,7 +4765,7 @@ If this is true, then the container argument is overlooked and redundant. This c cache (`storage.CachingConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -4776,7 +4776,7 @@ cache (`storage.CachingConfig`_) limits (`storage.LimitsConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets limits for stores. @@ -4788,7 +4788,7 @@ Sets limits for stores. defaultHttpClient (`storage.HTTPClientConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets the default http client config. @@ -4801,7 +4801,7 @@ Sets the default http client config. signedUrl (`storage.SignedURLConfig`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ Sets config for SignedURL. @@ -4813,10 +4813,10 @@ Sets config for SignedURL. storage.CachingConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ max_size_mbs (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum size of the cache where the Blob store data is cached in-memory. If not specified or set to 0, cache is not used @@ -4828,7 +4828,7 @@ Maximum size of the cache where the Blob store data is cached in-memory. If not target_gc_percent (int) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets the garbage collection target percentage. @@ -4840,10 +4840,10 @@ Sets the garbage collection target percentage. storage.ConnectionConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ endpoint (`config.URL`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" URL for storage client to connect to. @@ -4855,7 +4855,7 @@ URL for storage client to connect to. auth-type (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Auth Type to use [iam,accesskey]. @@ -4867,7 +4867,7 @@ Auth Type to use [iam,accesskey]. access-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Access key to use. Only required when authtype is set to accesskey. @@ -4879,7 +4879,7 @@ Access key to use. Only required when authtype is set to accesskey. secret-key (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Secret to use when accesskey is set. @@ -4891,7 +4891,7 @@ Secret to use when accesskey is set. region (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Region to connect to. @@ -4903,7 +4903,7 @@ Region to connect to. disable-ssl (bool) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Disables SSL connection. Should only be used for development. @@ -4915,10 +4915,10 @@ Disables SSL connection. Should only be used for development. storage.HTTPClientConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ headers (map[string][]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4928,7 +4928,7 @@ headers (map[string][]string) timeout (`config.Duration`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Sets time out on the http client. @@ -4940,10 +4940,10 @@ Sets time out on the http client. storage.LimitsConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ maxDownloadMBs (int64) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maximum allowed download size (in MBs) per call. @@ -4955,10 +4955,10 @@ Maximum allowed download size (in MBs) per call. storage.SignedURLConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ stowConfigOverride (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -4968,10 +4968,10 @@ stowConfigOverride (map[string]string) storage.StowConfig -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ kind (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Kind of Stow backend to use. Refer to github/flyteorg/stow @@ -4983,7 +4983,7 @@ Kind of Stow backend to use. Refer to github/flyteorg/stow config (map[string]string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Configuration for stow backend. Refer to github/flyteorg/stow @@ -4995,10 +4995,10 @@ Configuration for stow backend. Refer to github/flyteorg/stow Section: task_resources -================================================================================ +======================================================================================================================== defaults (`interfaces.TaskResourceSet`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -5012,7 +5012,7 @@ defaults (`interfaces.TaskResourceSet`_) limits (`interfaces.TaskResourceSet`_) --------------------------------------------------------------------------------- +------------------------------------------------------------------------------------------------------------------------ **Default Value**: @@ -5026,10 +5026,10 @@ limits (`interfaces.TaskResourceSet`_) interfaces.TaskResourceSet -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cpu (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5039,7 +5039,7 @@ cpu (`resource.Quantity`_) gpu (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5049,7 +5049,7 @@ gpu (`resource.Quantity`_) memory (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5059,7 +5059,7 @@ memory (`resource.Quantity`_) storage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: @@ -5069,7 +5069,7 @@ storage (`resource.Quantity`_) ephemeralStorage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" **Default Value**: