Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions charts/kasm/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,121 @@
"annotations",
"labels"
]
},
"share": {
"additionalProperties": false,
"description": " ",
"properties": {
"annotations": {
"additionalProperties": true,
"description": "Custom annotations to add to the Kasm Share Deployment",
"title": "annotations",
"type": "object"
},
"enabled": {
"default": true,
"description": "Use this setting to enable/disable deployment of the Kasm Share and associated Redis services - [Kasm Share Service](https://kasmweb.com/docs/latest/guide/session_sharing.html).",
"title": "enabled",
"type": "boolean"
},
"image": {
"additionalProperties": false,
"description": "Configure the image repository where the image is stored. Use this to point to an private hosted container registry instead of our public DockerHub hosted one.",
"properties": {
"repository": {
"default": "kasmweb/share",
"title": "repository",
"type": "string"
},
"tag": {
"default": "1.18.1",
"title": "tag",
"type": "string"
}
},
"title": "image",
"type": "object",
"requied": [
"repository",
"tag"
]
},
"labels": {
"additionalProperties": true,
"description": "Custom labels to add to the Kasm Share Deployment",
"title": "labels",
"type": "object"
},
"resources": {
"additionalProperties": true,
"description": "Manually configure the Kasm Share Deployment resources. This overrides the pre-defined `deploymentSize` values.",
"title": "resources",
"type": "object"
}
},
"title": "share",
"type": "object",
"requied": [
"enabled",
"image",
"resources",
"annotations",
"labels"
]
},
"redis": {
"additionalProperties": false,
"description": " ",
"properties": {
"annotations": {
"additionalProperties": true,
"description": "Custom annotations to add to the Kasm Redis Deployment",
"title": "annotations",
"type": "object"
},
"image": {
"additionalProperties": false,
"description": "Configure the image repository where the image is stored. Use this to point to an private hosted container registry instead of our public DockerHub hosted one.",
"properties": {
"repository": {
"default": "redis",
"title": "repository",
"type": "string"
},
"tag": {
"default": "5-alpine",
"title": "tag",
"type": "string"
}
},
"title": "image",
"type": "object",
"requied": [
"repository",
"tag"
]
},
"labels": {
"additionalProperties": true,
"description": "Custom labels to add to the Kasm Redis Deployment",
"title": "labels",
"type": "object"
},
"resources": {
"additionalProperties": true,
"description": "Manually configure the Kasm Redis Deployment resources. This overrides the pre-defined `deploymentSize` values.",
"title": "resources",
"type": "object"
}
},
"title": "redis",
"type": "object",
"requied": [
"image",
"resources",
"annotations",
"labels"
]
}
},
"title": "components",
Expand Down