Skip to content

Commit

Permalink
Improve OpenShift UI for chart
Browse files Browse the repository at this point in the history
  • Loading branch information
spilchen committed Nov 8, 2023
1 parent fa353b0 commit 986da1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apiVersion: v2
name: vertica-kafka-scheduler
description: Deploys the Vertica Kafka Scheduler in Kubernetes
type: application
version: 0.1.0
version: 0.1.1
# The appVersion corresponds to the Vertica version
appVersion: "23.4.0"
icon: https://raw.githubusercontent.com/vertica/kafka-scheduler-chart/main/vertica-logo.png
11 changes: 6 additions & 5 deletions values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
"properties": {
"image": {
"type": "object",
"description": "The image has the java environment and vkconfig, which is compiled against a specific version of Vertica",
"additionalProperties": false,
"properties": {
"repository": {
"type": "string",
"description": "The image repository and name",
"description": "The image repository and name. This image has the java environment and vkconfig, which is compiled against a specific version of Vertica",
"default": "vertica/kafka-scheduler"
},
"pullPolicy": {
Expand All @@ -19,7 +18,7 @@
},
"tag": {
"type": "string",
"description": "Overrides the image tag whose default is the chart appVersion. If using the official vertica repository, this tag corresponds to the vertica version that vkconfig was complied against. Pick the same version that matches the Vertica server you have deployed."
"description": "Overrides the image tag. If using the official vertica repository, this tag corresponds to the vertica version that vkconfig was complied against. Pick the same version that matches the Vertica server you have deployed."
}
},
"required": [
Expand All @@ -32,7 +31,8 @@
"type": "boolean",
"description": "The launcher is a deployment object that runs the 'vkconfig launch' program. You must already have done setup of vkconfig for this program to work. You can temporarily disable it to allow for setup to occur.",
"additionalProperties": false,
"default": false
"default": false,
"title": "Enabled"
},
"replicaCount": {
"type": "integer",
Expand All @@ -42,7 +42,8 @@
"initializerEnabled": {
"type": "boolean",
"description": "The initializer is a pod that runs the container without invoking vkconfig. It gives you CLI access to the vkconfig command. The intention is that you would use the CLI to do neccessary setup then disabled it when you want to run the launcher.",
"default": true
"default": true,
"title": "Enabled"
},
"conf": {
"type": "object",
Expand Down

0 comments on commit 986da1b

Please sign in to comment.