generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(provisioning)!: change to the new div provisioning api (#93)
* change to the new div provisioning api * adjust service account to new provisioning api * add new delete logic * add documentation for the new process * adjust int values for v2 ----------- Refs: #79 Reviewed-by: Evelyn Gurschler <[email protected]>
- Loading branch information
Showing
151 changed files
with
6,524 additions
and
4,098 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,6 @@ dependencies: | |
| dim.healthChecks.liveness.path | string | `"/healthz"` | | | ||
| dim.healthChecks.readyness.path | string | `"/ready"` | | | ||
| dim.swaggerEnabled | bool | `false` | | | ||
| dim.rootDirectoryId | string | `"00000000-0000-0000-0000-000000000000"` | | | ||
| dim.operatorId | string | `"00000000-0000-0000-0000-000000000000"` | | | ||
| migrations.name | string | `"migrations"` | | | ||
| migrations.image.name | string | `"ghcr.io/sap/ssi-dim-middle-layer_dim-migrations"` | | | ||
|
@@ -65,17 +64,17 @@ dependencies: | |
| processesworker.image.tag | string | `""` | | | ||
| processesworker.imagePullPolicy | string | `"IfNotPresent"` | | | ||
| processesworker.resources | object | `{"limits":{"cpu":"45m","memory":"300M"},"requests":{"cpu":"15m","memory":"300M"}}` | We recommend to review the default resource limits as this should a conscious choice. | | ||
| processesworker.dim.adminMail | string | `"[email protected]"` | | | ||
| processesworker.dim.clientIdCisCentral | string | `""` | | | ||
| processesworker.dim.clientSecretCisCentral | string | `""` | | | ||
| processesworker.dim.authUrl | string | `""` | | | ||
| processesworker.subaccount.baseUrl | string | `""` | Url to the subaccount service api | | ||
| processesworker.entitlement.baseUrl | string | `""` | Url to the entitlement service api | | ||
| processesworker.cf.clientId | string | `""` | | | ||
| processesworker.cf.clientSecret | string | `""` | | | ||
| processesworker.cf.tokenAddress | string | `""` | | | ||
| processesworker.cf.baseUrl | string | `""` | Url to the cf service api | | ||
| processesworker.cf.grantType | string | `"client_credentials"` | | | ||
| processesworker.dim.applicationName | string | `""` | | | ||
| processesworker.provisioning.clientId | string | `""` | | | ||
| processesworker.provisioning.clientSecret | string | `""` | | | ||
| processesworker.provisioning.tokenAddress | string | `""` | | | ||
| processesworker.provisioning.baseUrl | string | `""` | Url to the cf service api | | ||
| processesworker.provisioning.grantType | string | `"client_credentials"` | | | ||
| processesworker.provisioning.encryptionConfigIndex | int | `0` | | | ||
| processesworker.provisioning.encryptionConfigs.index0.index | int | `0` | | | ||
| processesworker.provisioning.encryptionConfigs.index0.cipherMode | string | `"CBC"` | | | ||
| processesworker.provisioning.encryptionConfigs.index0.paddingMode | string | `"PKCS7"` | | | ||
| processesworker.provisioning.encryptionConfigs.index0.encryptionKey | string | `""` | EncryptionKey to encrypt the provisioning client-secret. Secret-key 'provisioning-encryption-key0'. Expected format is 256 bit (64 digits) hex. | | ||
| processesworker.callback.scope | string | `"openid"` | | | ||
| processesworker.callback.grantType | string | `"client_credentials"` | | | ||
| processesworker.callback.clientId | string | `""` | Provide client-id for callback. | | ||
|
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
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 |
---|---|---|
|
@@ -42,7 +42,6 @@ dim: | |
readyness: | ||
path: "/ready" | ||
swaggerEnabled: false | ||
rootDirectoryId: "00000000-0000-0000-0000-000000000000" | ||
operatorId: "00000000-0000-0000-0000-000000000000" | ||
|
||
migrations: | ||
|
@@ -80,23 +79,23 @@ processesworker: | |
cpu: 45m | ||
memory: 300M | ||
dim: | ||
adminMail: "[email protected]" | ||
clientIdCisCentral: "" | ||
clientSecretCisCentral: "" | ||
authUrl: "" | ||
subaccount: | ||
# -- Url to the subaccount service api | ||
baseUrl: "" | ||
entitlement: | ||
# -- Url to the entitlement service api | ||
baseUrl: "" | ||
cf: | ||
applicationName: "" | ||
provisioning: | ||
clientId: "" | ||
clientSecret: "" | ||
tokenAddress: "" | ||
# -- Url to the cf service api | ||
baseUrl: "" | ||
grantType: "client_credentials" | ||
encryptionConfigIndex: 0 | ||
encryptionConfigs: | ||
index0: | ||
index: 0 | ||
cipherMode: "CBC" | ||
paddingMode: "PKCS7" | ||
# -- EncryptionKey to encrypt the provisioning client-secret. Secret-key 'provisioning-encryption-key0'. | ||
# Expected format is 256 bit (64 digits) hex. | ||
encryptionKey: "" | ||
callback: | ||
scope: "openid" | ||
grantType: "client_credentials" | ||
|
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
Oops, something went wrong.