Skip to content

Commit a2dd86b

Browse files
author
Steve Salas
committed
Add SAML parameters to README
1 parent 5c29d5c commit a2dd86b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

setup/core/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ This section describes the setup.ps1 script parameters, which you can specify by
140140
| `minioNoScheduleExecuteToleration` | pod toleration for the minio pod | tag=minio (example) |
141141
| `workflowControllerNoScheduleExecuteToleration` | pod toleration for the workflow controller pod | tag=workflowcontroller (example) |
142142
| | | |
143+
| `hostBasePath` | base path from which the ACS endpoint is derived | https://app.codedx.com/codedx (example) |
144+
| `saml.enabled` | whether to configure a SAML identity provider | false |
145+
| `saml.appName` | application name previously registered with your SAML IdP | codedxclient (example) |
146+
| `saml.samlIdpXmlFile` | XML metadata file for your SAML IdP | idp-metadata.xml (example) |
147+
| | | |
143148
| `pauseAfterGitClone` | whether to pause (for debug purposes) after git clone | |
144149
| | | |
145150
| `provisionNetworkPolicy` | script block for optional network policy provisioning | |

setup/core/charts/codedx/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ authentication:
443443
#
444444
enabled: false
445445

446-
# saml.appName is the applicate name or ID that was previously registered with your SAML
446+
# saml.appName is the application name or ID that was previously registered with your SAML
447447
# identity provider and is associated with your Code Dx application.
448448
#
449449
appName:

setup/core/setup.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ if (-not $skipToolOrchestration -and $toolServiceApiKey -eq '') {
236236

237237
if ($caCertsFilePwd -eq '') {
238238
$caCertsFilePwd = Get-CacertsPasswordFromPd $namespaceCodeDx $releaseNameCodeDx
239+
if ($caCertsFilePwd -eq '') {
240+
$caCertsFilePwd = 'changeit'
241+
}
239242
}
240243

241244
if ($caCertsFileNewPwd -eq '') {

0 commit comments

Comments
 (0)