Skip to content

Commit

Permalink
Add identity section to config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Sep 9, 2024
1 parent cfdbc9e commit 37b2f9c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/kamu-api-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: kamu-api-server
description: API server component of the Kamu Compute Node
type: application
version: 0.35.1
version: 0.35.2
appVersion: "0.35.1"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
Expand Down
24 changes: 20 additions & 4 deletions charts/kamu-api-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@
"required": [],
"properties": {}
},
"identity": {
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"privateKey": {
"type": "string"
}
}
},
"protocol": {
"type": "object",
"required": [],
Expand Down Expand Up @@ -426,9 +436,15 @@
"resourceFieldRef": {
"type": "object",
"properties": {
"resource": {"type": "string"},
"containerName": {"type": "string"},
"divisor": {"type": "string"}
"resource": {
"type": "string"
},
"containerName": {
"type": "string"
},
"divisor": {
"type": "string"
}
}
},
"secretKeyRef": {
Expand Down Expand Up @@ -486,4 +502,4 @@
}
}
}
}
}

0 comments on commit 37b2f9c

Please sign in to comment.