You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E2E workflow scripts should be agnostic to which flavor of Conjur (Enterprise or OSS) has been deployed to the cluster rather than setting this with the CONJUR_OSS_HELM_INSTALLED environment variable.
Deploy Conjur (in whatever flavour)
Extract any details from deployed Conjur that might be needed for later
The example below shows a snippet of code that could be substituted with a value explicitly retrieved from (2)
if [[ "$CONJUR_OSS_HELM_INSTALLED" == "true" ]]; then
conjur_service='conjur-oss'
else
conjur_service='conjur-master'
fi
conjur_url=${CONJUR_APPLIANCE_URL:-https://$conjur_service.$CONJUR_NAMESPACE.svc.cluster.local}
imheresamir
changed the title
E2E workflow scripts should infer which flavor of Conjur has been deployed to the cluster
E2E Workflow Scripts: Infer which flavor of Conjur has been deployed to the cluster
Jun 1, 2021
imheresamir
changed the title
E2E Workflow Scripts: Infer which flavor of Conjur has been deployed to the cluster
E2E Workflow Scripts: Workflow should be agnostic to which flavor of Conjur has been deployed to the cluster
Jun 3, 2021
The intent of this story is to have the test scripts be able to automatically detect which version of Conjur they're talking to, possibly by querying the /info endpoint. This is squarely in the "nice-to-have" category for the time being. It will likely require some spiking and design before we can point it.
jtuttle
changed the title
E2E Workflow Scripts: Workflow should be agnostic to which flavor of Conjur has been deployed to the cluster
E2E Workflow Scripts: Workflow should infer which flavor of Conjur has been deployed to the cluster
Aug 2, 2021
jtuttle
changed the title
E2E Workflow Scripts: Workflow should infer which flavor of Conjur has been deployed to the cluster
E2E Workflow Scripts: Workflow should detect which flavor of Conjur has been deployed to the cluster
Aug 2, 2021
Describe the solution you would like
E2E workflow scripts should be agnostic to which flavor of Conjur (Enterprise or OSS) has been deployed to the cluster rather than setting this with the
CONJUR_OSS_HELM_INSTALLED
environment variable.Originally posted by @doodlesbykumbi in #307 (comment)
The text was updated successfully, but these errors were encountered: