Skip to content
This repository was archived by the owner on Jun 29, 2022. It is now read-only.
Open
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
3 changes: 3 additions & 0 deletions AIO/acumos_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ export ACUMOS_HTTPS_PROXY=
# Component options
export ACUMOS_PRIVILEGED_ENABLE=false
export ACUMOS_CAS_ENABLE=false
export ACUMOS_CAS_LOGIN_URI=
export ACUMOS_CAS_LOGOUT_URI=
export ACUMOS_CAS_VALIDATE_URI=
export ACUMOS_VERIFY_ACCOUNT=false
export ACUMOS_TOKEN_EXP_TIME=24
export ACUMOS_ADMIN=admin
Expand Down
16 changes: 9 additions & 7 deletions AIO/kubernetes/deployment/portal-be-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,15 @@ spec:
"enablePublication": "<ACUMOS_PORTAL_ENABLE_PUBLICATION>",
"validateModel": "false",
"email_service": "<ACUMOS_EMAIL_SERVICE>",
"cas": {
"login": "<ACUMOS_CAS_LOGIN_URI>",
"logout": "<ACUMOS_CAS_LOGOUT_URI>",
"service": {
"validate": {
"url": "<ACUMOS_CAS_VALIDATE_URI>"
}
}
},
"cas_enabled": "<ACUMOS_CAS_ENABLE>",
"download_bufferSize": 8,
"signup_enabled": "true",
Expand Down Expand Up @@ -290,13 +299,6 @@ spec:
"timeout": "80000000"
}
},
"cas": {
"service": {
"validate": {
"url": "https://identity.linuxfoundation.org/cas/serviceValidate"
}
}
},
"logging": {
"level": {
"org": {
Expand Down