This repo demonstrates an app retrieving secrets from Conjur Open Source or a Conjur Enterprise follower running in Kubernetes or OpenShift.
Note: These demo scripts have been tested with the following products:
This demo works with both Conjur Open Source and Enterprise. You can tailor the specific steps that the demo scripts perform using environment variable settings, based on your specific needs (e.g. do you want the scripts to load policy into Conjur master, or will you be doing that independently) and whether you are using Conjur Open Source or Enterprise.
The steps, or workflow, that the scripts perform can be categorized into
three phases (the Security Admin Steps
phase being optional):
Demo Preparation:
Security Admin Steps (Optional):
Demo Application Deployment:
You may choose to skip the Security Admin Steps
for example if you plan on
loading Conjur policy separately from these scripts.
The pet store demo app is based on the cyberark/demo-app
Docker image. It can
be deployed with a PostgreSQL or MySQL database and the DB credentials are stored
in Conjur.
This demo works with both Conjur Open Source and Enterprise, but the requirements vary depending on which you are using.
To run this demo, you must load policy. You may want to set up a separate Conjur cluster purely for the purpose of running this demo since you may not want to load demo policy in your production environment.
There are a couple of options available for deploying a Conjur cluster:
Supported platforms:
Kubernetes v1.16+
To run this demo with Conjur Open Source, you must have deployed Conjur Open Source to your Kubernetes cluster using the helm chart.
You must have credentials for a Conjur user that can load policy
Supported platforms:
To run this demo with Conjur Enterprise, you must have deployed a Conjur Enterprise follower to your Kubernetes cluster following the documentation.
Note: if you have been following the Conjur Enterprise documentation, you may have completed this step while you were already logged into the Conjur master. If not, you will need to do so now.
To run this demo via the command line, ensure you are logged in to the correct cluster. Make sure you have followed the instructions in the requirements section so that your Conjur environment is prepared.
Set the following variables in your local environment:
Environment Variable | Definition | Mandatory | Default | Example |
---|---|---|---|---|
AUTHENTICATOR_ID |
The Conjur Kubernetes authenticator ID to use in Conjur policy (refer to the documentation on enabling Conjur authenticators). | Yes | - | my-authn-id |
CONFIGURE_CONJUR_MASTER |
Boolean to determine if security admin steps described above (initialize Conjur CA, configure Conjur policy) should be performed by the scripts. NOTE: This setting only applies when running the scripts with Conjur Enterprise. When running with Conjur Open Source (i.e. when CONJUR_OSS_HELM_INSTALLED is set to true ), then security admin steps are performed regardless of this setting. |
No | false |
true |
CONJUR_ACCOUNT |
The account your Conjur cluster is configured to use. | Yes | - | myConjurAccount |
CONJUR_ADMIN_PASSWORD |
The admin user password that was created when you created the account on your Conjur cluster. |
Yes | - | |
CONJUR_AUTHN_LOGIN_RESOURCE |
Type of Kubernetes resource to use as Conjur application identity. | No | service_account |
deployment |
CONJUR_NAMESPACE_NAME |
The namespace to which Conjur was deployed. | Yes | - | conjur-namespace |
VALIDATOR_ID |
Optional host ID to include in Conjur policy for testing basic authentication following Kubernetes cluster configuration. | No | validator |
my-validator-id |
VALIDATOR_NAMESPACE_NAME |
The namespace from which basic authentication will be tested using VALIDATOR_ID. | No | CONJUR_NAMESPACE_NAME | my-conjur-namespace |
APP_VALIDATOR_ID |
Optional host ID to include in Conjur policy for testing basic authentication following application Namespace configuration. | No | app-validator |
my-app-validator-id |
APP_VALIDATOR_NAMESPACE_NAME |
The namespace from which basic authentication will be tested using APP_VALIDATOR_ID. | No | TEST_APP_NAMESPACE_NAME | my-app-namespace |
CONJUR_OSS_HELM_INSTALLED |
Set to true if you are using Conjur Open Source. |
No | false |
true |
USE_DOCKER_LOCAL_REGISTRY |
Set to true if you are using a local, insecure registry to push/pull pod images. |
No | false |
true |
DOCKER_REGISTRY_URL |
Set to the Docker registry to use for your platform for pushing/pulling application images that get built by the script. This value is mainly used for authentication. Examples are docker.io for DockerHub or us.gcr.io for GKE. |
Yes | - | us.gcr.io |
PULL_DOCKER_REGISTRY_URL |
This value represents the same as DOCKER_REGISTRY_URL above. In general, it need not be set and will default to the same value as DOCKER_REGISTRY_URL . However, it is useful when, say, DOCKER_REGISTRY_URL is an external endpoint that is used for pushing and PULL_DOCKER_REGISTRY_URL is the endpoint used for pulling. This value is also mainly used for authentication. |
Yes | ${DOCKER_REGISTRY_URL} |
image-registry.openshift-image-registry.svc:5000 |
DOCKER_REGISTRY_PATH |
Set to the Docker registry URL including any platform specific organization path (if applicable) for pushing/pulling application images that get built by the script. This value might be identical to DOCKER_REGISTRY_URL . Examples are docker.io/myorganization for DockerHub or us.gcr.io/myorganization for GKE or at times identical to DOCKER_REGISTRY_URL for Openshift. |
Yes | - | docker.io/myorganization |
PULL_DOCKER_REGISTRY_PATH |
This value represents the same as DOCKER_REGISTRY_PATH above. In general, it need not be set and will default to the same value as DOCKER_REGISTRY_PATH . However, it is useful when, say, DOCKER_REGISTRY_PATH is an external endpoint that is used for pushing and PULL_DOCKER_REGISTRY_PATH is the endpoint used for pulling. Like DOCKER_REGISTRY_PATH , this value is set to the Docker registry URL including any platform specific organization path (if applicable) for (only) pulling application images that get built by the script. |
Yes | ${DOCKER_REGISTRY_PATH} |
image-registry.openshift-image-registry.svc:5000 |
PLATFORM |
Set this variable to kubernetes or openshift , depending on which type of cluster you will be running the demo in. |
No | kubernetes |
openshift |
TEST_APP_DATABASE |
The type of database to run with the pet store app. Supported values are mysql , mssql , and postgres . |
Yes | - | mysql |
TEST_APP_NAMESPACE_NAME |
The Kubernetes namespace in which your test app will be deployed. The demo scripts create this namespace for you if necessary. | Yes | - | demo-namespace |
TEST_APP_LOADBALANCER_SVCS |
Boolean to determine whether to use LoadBalancer type service instead of NodePort services. When running MiniKube or Kubernetes-in-Docker, you may want to set this to false . |
No | true |
false |
The demo scripts determine whether to use the kubectl
or oc
CLI
based on your PLATFORM
environment variable configuration.
Note: if you are using a private Docker registry, you will also need to set:
export DOCKER_USERNAME=<your-username>
export DOCKER_PASSWORD=<your-password>
export DOCKER_EMAIL=<your-email>
Once you have:
Run ./start
from the root directory of this repository to execute the numbered
scripts and step through the process of deploying test apps.
We welcome contributions of all kinds to this repository. For instructions on how to get started and descriptions of our development workflows, please see our contributing guide.