Skip to content

Commit

Permalink
Added missing schema properties and values
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-perge committed Oct 7, 2024
1 parent 16739bc commit 75ae235
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 14 deletions.
20 changes: 6 additions & 14 deletions charts/k6-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,13 @@
"type": "string"
}
},
"description": "global.image -- Global image configuration",
"title": "image",
"type": "object"
}
},
"title": "global",
"type": "object",
"required": [
"image"
]
"type": "object"
},
"installCRDs": {
"default": true,
Expand Down Expand Up @@ -171,6 +169,7 @@
"type": "string"
}
},
"description": "manager.image -- controller-manager image configuration",
"title": "image",
"type": "object"
},
Expand Down Expand Up @@ -260,11 +259,9 @@
"type": "object"
}
},
"description": "manager -- controller-manager configuration",
"title": "manager",
"type": "object",
"required": [
"image"
]
"type": "object"
},
"namespace": {
"additionalProperties": false,
Expand Down Expand Up @@ -319,10 +316,5 @@
}
},
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"global",
"prometheus",
"manager"
]
"type": "object"
}
23 changes: 23 additions & 0 deletions charts/k6-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# @schema
# required: false
# type: object
# @schema
global:
# @schema
# required: false
# type: object
# @schema
# global.image -- Global image configuration
image:
# @schema
# required: false
Expand Down Expand Up @@ -90,6 +99,10 @@ namespace:
# namespace.create -- create the namespace (default: true)
create: true

# @schema
# required: false
# type: object
# @schema
prometheus:
# @schema
# required: false
Expand Down Expand Up @@ -171,6 +184,11 @@ authProxy:
# authProxy.containerSecurityContext -- A security context defines privileges and access control settings for the container.
containerSecurityContext: {}

# @schema
# required: false
# type: object
# @schema
# manager -- controller-manager configuration
manager:
# @schema
# required: false
Expand All @@ -195,6 +213,11 @@ manager:
# @schema
# manager.serviceAccount.create -- create the service account (default: true)
create: true
# @schema
# required: false
# type: object
# @schema
# manager.image -- controller-manager image configuration
image:
# @schema
# required: false
Expand Down

0 comments on commit 75ae235

Please sign in to comment.