-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update README/Schema for changed charts
- Loading branch information
1 parent
105b876
commit 3b675e3
Showing
4 changed files
with
911 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"title": "Chart Values", | ||
"type": "object", | ||
"properties": { | ||
"global": { | ||
"type": "object", | ||
"properties": { | ||
"appContext": { | ||
"type": "object", | ||
"properties": { | ||
"envContextConfigMapName": { | ||
"type": "string", | ||
"description": "App environment level configuration configmap name", | ||
"default": "" | ||
}, | ||
"stackContextConfigMapName": { | ||
"type": "string", | ||
"description": "Stack level configuration configmap name", | ||
"default": "" | ||
} | ||
} | ||
}, | ||
"appSecrets": { | ||
"type": "object", | ||
"properties": { | ||
"envSecret": { | ||
"type": "object", | ||
"properties": { | ||
"secretName": { | ||
"type": "string", | ||
"description": "Environment-level Kube secret name to write External Secrets to", | ||
"default": "" | ||
}, | ||
"secretKey": { | ||
"type": "string", | ||
"description": "Environment-level secret key to map External Secrets from", | ||
"default": "" | ||
} | ||
} | ||
}, | ||
"stackSecret": { | ||
"type": "object", | ||
"properties": { | ||
"secretName": { | ||
"type": "string", | ||
"description": "Stack-level Kube secret name to write External Secrets to", | ||
"default": "" | ||
}, | ||
"secretKey": { | ||
"type": "string", | ||
"description": "Stack-level secret key to map External Secrets from", | ||
"default": "" | ||
} | ||
} | ||
}, | ||
"clusterSecret": { | ||
"type": "object", | ||
"properties": { | ||
"secretName": { | ||
"type": "string", | ||
"description": "Cluster-level Kube secret name to write External Secrets to", | ||
"default": "" | ||
}, | ||
"secretKey": { | ||
"type": "string", | ||
"description": "Cluster-level secret key to map External Secrets from", | ||
"default": "" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"deploymentStage": { | ||
"type": "string", | ||
"description": "Deployment stage (eg: rdev, staging, prod)", | ||
"default": "staging" | ||
}, | ||
"ingress": { | ||
"type": "object", | ||
"properties": { | ||
"host": { | ||
"type": "string", | ||
"description": "Ingress host", | ||
"default": "foo.example.co" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.