Skip to content

Commit

Permalink
Allow additional properties
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrice-toussaint-sendcloud committed Apr 22, 2024
1 parent d73ef8c commit 7179190
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
32 changes: 16 additions & 16 deletions charts/prefect-server/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"nameOverride": {
"type": "string",
Expand Down Expand Up @@ -38,7 +38,7 @@
"title": "Server",
"description": "server configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"image": {
"type": "object",
Expand Down Expand Up @@ -145,7 +145,7 @@
"title": "Autoscaling",
"description": "server autoscaling configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
Expand Down Expand Up @@ -190,14 +190,14 @@
"title": "Resources",
"description": "server resource requests and limits",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"requests": {
"type": "object",
"title": "Requests",
"description": "server resource requests",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"cpu": {
"type": "string",
Expand All @@ -218,7 +218,7 @@
"title": "Limits",
"description": "server resource limits",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"cpu": {
"type": "string",
Expand All @@ -241,7 +241,7 @@
"title": "Liveness Probe",
"description": "server liveness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
Expand All @@ -254,7 +254,7 @@
"title": "Liveness Probe",
"description": "server liveness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"initialDelaySeconds": {
"type": "integer",
Expand Down Expand Up @@ -295,7 +295,7 @@
"title": "Readiness Probe",
"description": "server readiness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
Expand All @@ -308,7 +308,7 @@
"title": "Readiness Probe",
"description": "server readiness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"initialDelaySeconds": {
"type": "integer",
Expand Down Expand Up @@ -349,7 +349,7 @@
"title": "Pod Security Context",
"description": "server pod security context",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"runAsUser": {
"type": "integer",
Expand All @@ -376,7 +376,7 @@
"title": "Container Security Context",
"description": "server container security context",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"runAsUser": {
"type": "integer",
Expand Down Expand Up @@ -489,7 +489,7 @@
"title": "Service Account",
"description": "server service account configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"create": {
"type": "boolean",
Expand All @@ -516,7 +516,7 @@
"title": "Service",
"description": "server service configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"type": {
"type": "string",
Expand Down Expand Up @@ -567,7 +567,7 @@
"title": "Ingress",
"description": "server ingress configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
Expand All @@ -586,7 +586,7 @@
"title": "Host",
"description": "server ingress host configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"hostname": {
"type": "string",
Expand Down
34 changes: 17 additions & 17 deletions charts/prefect-worker/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"nameOverride": {
"type": "string",
Expand Down Expand Up @@ -38,7 +38,7 @@
"title": "Worker",
"description": "worker configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"clusterUid": {
"type": "string",
Expand All @@ -51,7 +51,7 @@
"title": "Image",
"description": "worker image configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"repository": {
"type": "string",
Expand Down Expand Up @@ -93,7 +93,7 @@
"title": "Config",
"description": "general configuration of the worker",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"workPool": {
"type": "string",
Expand Down Expand Up @@ -177,7 +177,7 @@
"title": "Cloud API Config",
"description": "cloud api configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"accountId": {
"type": "string",
Expand Down Expand Up @@ -224,7 +224,7 @@
"title": "Self Hosted API Config",
"description": "self hosted api configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"accountId": {
"type": "string",
Expand Down Expand Up @@ -277,7 +277,7 @@
"title": "Server API Config",
"description": "server api configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"apiUrl": {
"type": "string",
Expand All @@ -304,14 +304,14 @@
"title": "Resources",
"description": "worker resource configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"requests": {
"type": "object",
"title": "Requests",
"description": "the requested resources for the worker container",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"cpu": {
"type": "string",
Expand All @@ -332,7 +332,7 @@
"title": "Limits",
"description": "the requested limits for the worker container",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"cpu": {
"type": "string",
Expand All @@ -355,7 +355,7 @@
"title": "Liveness Probe",
"description": "worker liveness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
Expand All @@ -368,7 +368,7 @@
"title": "Config",
"description": "worker liveness probe configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"initialDelaySeconds": {
"type": "integer",
Expand Down Expand Up @@ -409,7 +409,7 @@
"title": "Pod Security Context",
"description": "worker pod security context configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"fsGroup": {
"type": "integer",
Expand Down Expand Up @@ -442,7 +442,7 @@
"title": "Container Security Context",
"description": "worker container security context configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"allowPrivilegeEscalation": {
"type": "boolean",
Expand Down Expand Up @@ -561,7 +561,7 @@
"title": "Service Account",
"description": "service account configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"create": {
"type": "boolean",
Expand All @@ -588,7 +588,7 @@
"title": "Role",
"description": "role configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"create": {
"type": "boolean",
Expand All @@ -609,7 +609,7 @@
"title": "RoleBinding",
"description": "rolebinding configuration",
"form": true,
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"create": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-prefect-exporter/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"replicaCount" : {
"type": "integer",
Expand Down

0 comments on commit 7179190

Please sign in to comment.