Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,15 @@ When creating a property to use as a key for external secret storage, use the fo
* **CIAdmin.AzureBlobStorageToken** - SAS token for the Azure Blob Storage
* **CIAdmin.AzureAwsS3SK** - Name of the Azure DevOps organization

* Cluster Manager

* **ClusterManager.OCIRegistryAWSSK** - OCI Registry: AWS secret access key for the OCI registry
* **serverClusterManager.OCIBasicAuthPassword** - OCI Registry: Password for the OCI registry
* **serverClusterManager.MDAAWSSK** - MDA Storage: AWS secret access key for the MDA file
* **serverClusterManager.MDAFileBasicAuthPassword** - MDA Storage: Password for the MDA file
* **serverClusterManager.KubernetesApiToken** - Kubernetes API: Token for accessing the Kubernetes API
* **serverClusterManager.GrafanaAPIKey** - Grafana: API key for accessing the Grafana server

* Marketplace

* **Marketplace.ImportCDNPassword** - Personal access token for the Marketplace admin
Expand Down Expand Up @@ -175,13 +184,12 @@ The following is a JSON template. Copy this template into your secret, and set t
"AzureAwsS3SK": ""
},
"ClusterManager": {
"KubernetesApiToken": ""
},
"ClusterSettings": {
"KubernetesAdminPassword": "",
"GrafanaAPIKey": "",
"MDAAWSS3AccessKey": "",
"OCIRegistryPassword": ""
"KubernetesApiToken": "",
"GrafanaAPIKey":"",
"MDAFileBasicAuthPassword": "",
"MDAAWSSK": "",
"OCIBasicAuthPassword": "",
"OCIRegistryAWSSK": ""
},
"Marketplace": {
"ImportCDNPassword": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,15 @@ When creating the JSON structure for your secret, you must use a flat key-value
* **CIAdmin.AzureBlobStorageToken** - SAS token for the Azure Blob Storage
* **CIAdmin.AzureAwsS3SK** - Name of the Azure DevOps organization

* **Cluster Manager**

* **ClusterManager.OCIRegistryAWSSK** - OCI Registry: AWS secret access key for the OCI registry
* **serverClusterManager.OCIBasicAuthPassword** - OCI Registry: Password for the OCI registry
* **serverClusterManager.MDAAWSSK** - MDA Storage: AWS secret access key for the MDA file
* **serverClusterManager.MDAFileBasicAuthPassword** - MDA Storage: Password for the MDA file
* **serverClusterManager.KubernetesApiToken** - Kubernetes API: Token for accessing the Kubernetes API
* **serverClusterManager.GrafanaAPIKey** - Grafana: API key for accessing the Grafana server

* Marketplace

* **Marketplace.ImportCDNPassword** - Personal access token for the Marketplace admin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,15 @@ Use the exact key names specified by Private Mendix Platform, with dots (`.`) as
* `CIAdmin.AzureBlobStorageToken`
* `CIAdmin.AzureAwsS3SK`

* **Cluster Manager**

* `ClusterManager.OCIRegistryAWSSK` - OCI Registry: AWS secret access key for the OCI registry
* `serverClusterManager.OCIBasicAuthPassword` - OCI Registry: Password for the OCI registry
* `serverClusterManager.MDAAWSSK` - MDA Storage: AWS secret access key for the MDA file
* `serverClusterManager.MDAFileBasicAuthPassword` - MDA Storage: Password for the MDA file
* `serverClusterManager.KubernetesApiToken` - Kubernetes API: Token for accessing the Kubernetes API
* `serverClusterManager.GrafanaAPIKey` - Grafana: API key for accessing the Grafana server

* **Marketplace**

* `Marketplace.ImportCDNPassword`
Expand Down