Refer to the services README.
Requires an OpenShift 4.4 or later cluster with the CamelK and AMQ Streams operators installed for all namespaces.
# Generate project.yml from individual definitions in each service
./scripts/generate.complete.project.sh
# Create a project namespace and apply the project.yml resources
oc new-project city-of-losangeles
oc apply -f project.complete.yml
# These will vary based on your opentlc ID and provisioned cluster details
export OCP_USERNAME=username-redhat.com
export GUID="1001"
export TARGET_HOST="bastion.$GUID.example.opentlc.com"
export APPS_DOMAIN="apps.cluster-$GUID.$GUID.example.opentlc.com"
# Always use this value since it's the workload name
export WORKLOAD="ocp4-workload-iot-managed"
# Change this depending on lab size
export USER_COUNT=5
# Copy SSH key to authorised keys on the bastion
ssh-copy-id $OCP_USERNAME@bastion.$GUID.example.opentlc.com
# Clone the agnosticd workloads repo
git clone https://github.com/redhat-cop/agnosticd/ agnosticd
cd agnosticd/ansible
ansible-playbook -i ${TARGET_HOST}, ./configs/ocp-workloads/ocp-workload.yml \
-e"ansible_ssh_private_key_file=~/.ssh/id_rsa" \
-e"ansible_user=${OCP_USERNAME}" \
-e"ocp_username=${OCP_USERNAME}" \
-e"ocp_workload=${WORKLOAD}" \
-e"guid=${GUID}" \
-e"num_users=${USER_COUNT}" \
-e"ocp_workload_test=true" \
-e"ocp_user_needs_quota=true" \
-e"ocp_apps_domain=${APPS_DOMAIN}" \
-e"ACTION=create"