-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ian UID2-3703 retrieve configs from identity service #799
Conversation
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
…etrieve' into ian-UID2-3703-identity-service-retrieve
# -- replace base URLs if both CORE_BASE_URL and OPTOUT_BASE_URL are provided | ||
# -- using hardcoded domains is fine because they should not be changed frequently | ||
if [ -n "${CORE_BASE_URL}" ] && [ -n "${OPTOUT_BASE_URL}" ] && [ "${DEPLOYMENT_ENVIRONMENT}" != "prod" ]; then | ||
if [ -n "${CORE_BASE_URL}" ] && [ "${CORE_BASE_URL}" != "null" ] && [ -n "${OPTOUT_BASE_URL}" ] && [ "${OPTOUT_BASE_URL}" != "null" ] && [ "${DEPLOYMENT_ENVIRONMENT}" != "prod" ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intereting, why do we need to check null again? Does -n
not checking null?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jq will return "null" if the key is not found
@@ -8,12 +8,12 @@ socks5h-proxy: | |||
operator-service: | |||
service: direct | |||
listen: tcp://0.0.0.0:80 | |||
connect: vsock://42:8080 | |||
connect: vsock://16:8080 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we changing this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eks/pod/entrypoint.sh has
CID=16
looks that @thomasm-ttd picked this number
No description provided.