|
| 1 | +{ |
| 2 | + "$schema": "https://json-schema.org/draft-07/schema#", |
| 3 | + "title": "Bison Helm values", |
| 4 | + "type": "object", |
| 5 | + "properties": { |
| 6 | + "global": { |
| 7 | + "type": "object", |
| 8 | + "properties": { |
| 9 | + "imageRegistry": { "type": "string" }, |
| 10 | + "imagePullSecrets": { "type": "array" } |
| 11 | + } |
| 12 | + }, |
| 13 | + "auth": { |
| 14 | + "type": "object", |
| 15 | + "properties": { |
| 16 | + "enabled": { "type": "boolean" }, |
| 17 | + "admin": { |
| 18 | + "type": "object", |
| 19 | + "properties": { |
| 20 | + "username": { "type": "string" }, |
| 21 | + "password": { "type": "string" }, |
| 22 | + "existingSecret": { "type": "string" } |
| 23 | + } |
| 24 | + }, |
| 25 | + "jwt": { |
| 26 | + "type": "object", |
| 27 | + "properties": { |
| 28 | + "secret": { "type": "string" }, |
| 29 | + "existingSecret": { "type": "string" } |
| 30 | + } |
| 31 | + } |
| 32 | + } |
| 33 | + }, |
| 34 | + "dependencies": { |
| 35 | + "type": "object", |
| 36 | + "properties": { |
| 37 | + "capsule": { |
| 38 | + "type": "object", |
| 39 | + "properties": { "enabled": { "type": "boolean" } } |
| 40 | + }, |
| 41 | + "opencost": { |
| 42 | + "type": "object", |
| 43 | + "properties": { |
| 44 | + "enabled": { "type": "boolean" }, |
| 45 | + "apiUrl": { "type": "string" } |
| 46 | + } |
| 47 | + }, |
| 48 | + "prometheus": { |
| 49 | + "type": "object", |
| 50 | + "properties": { |
| 51 | + "enabled": { "type": "boolean" }, |
| 52 | + "url": { "type": "string" } |
| 53 | + } |
| 54 | + } |
| 55 | + } |
| 56 | + }, |
| 57 | + "apiServer": { "$ref": "#/$defs/component" }, |
| 58 | + "webUI": { "$ref": "#/$defs/component" }, |
| 59 | + "ingress": { |
| 60 | + "type": "object", |
| 61 | + "properties": { |
| 62 | + "enabled": { "type": "boolean" }, |
| 63 | + "className": { "type": "string" }, |
| 64 | + "annotations": { "type": "object" }, |
| 65 | + "host": { "type": "string" }, |
| 66 | + "tls": { |
| 67 | + "type": "object", |
| 68 | + "properties": { |
| 69 | + "enabled": { "type": "boolean" }, |
| 70 | + "secretName": { "type": "string" } |
| 71 | + } |
| 72 | + } |
| 73 | + } |
| 74 | + }, |
| 75 | + "serviceAccount": { |
| 76 | + "type": "object", |
| 77 | + "properties": { |
| 78 | + "create": { "type": "boolean" }, |
| 79 | + "annotations": { "type": "object" }, |
| 80 | + "name": { "type": "string" } |
| 81 | + } |
| 82 | + }, |
| 83 | + "podSecurityContext": { "type": "object" }, |
| 84 | + "securityContext": { "type": "object" } |
| 85 | + }, |
| 86 | + "$defs": { |
| 87 | + "component": { |
| 88 | + "type": "object", |
| 89 | + "properties": { |
| 90 | + "enabled": { "type": "boolean" }, |
| 91 | + "replicaCount": { "type": "integer", "minimum": 0 }, |
| 92 | + "image": { |
| 93 | + "type": "object", |
| 94 | + "properties": { |
| 95 | + "repository": { "type": "string" }, |
| 96 | + "tag": { "type": "string" }, |
| 97 | + "pullPolicy": { "type": "string" } |
| 98 | + } |
| 99 | + }, |
| 100 | + "service": { |
| 101 | + "type": "object", |
| 102 | + "properties": { |
| 103 | + "type": { "type": "string" }, |
| 104 | + "port": { "type": "integer" } |
| 105 | + } |
| 106 | + }, |
| 107 | + "resources": { "type": "object" }, |
| 108 | + "nodeSelector": { "type": "object" }, |
| 109 | + "tolerations": { "type": "array" }, |
| 110 | + "affinity": { "type": "object" } |
| 111 | + } |
| 112 | + } |
| 113 | + } |
| 114 | +} |
0 commit comments