diff --git a/openshift/templates/agent/agent-build.yaml b/openshift/templates/agent/agent-build.yaml index 3588cb4..3a21948 100644 --- a/openshift/templates/agent/agent-build.yaml +++ b/openshift/templates/agent/agent-build.yaml @@ -99,12 +99,12 @@ parameters: displayName: Source Image Registry description: The name of the Source Image Registry. required: false - value: artifacts.developer.gov.bc.ca/docker-remote/ + value: artifacts.developer.gov.bc.ca/github-docker-remote/ - name: SOURCE_IMAGE_NAME displayName: Source Image Name description: The name of the Docker image to be used for the build. Overrides the FROM instruction in the Dockerfile. required: false - value: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.1 + value: hyperledger/aries-cloudagent-python:py3.9-indy-1.16.0-0.12.1 - name: OUTPUT_IMAGE_TAG displayName: Output Image Tag description: The tag given to the built image. diff --git a/openshift/templates/agent/agent-deploy.bc.dev.param b/openshift/templates/agent/agent-deploy.bc.dev.param index fa34cd6..cb018d7 100644 --- a/openshift/templates/agent/agent-deploy.bc.dev.param +++ b/openshift/templates/agent/agent-deploy.bc.dev.param @@ -34,6 +34,7 @@ AGENT_READ_ONLY_LEDGER=true # AGENT_TRACE_TARGET=log # AGENT_TRACE_TAG= # AGENT_TRACE_LABEL='${HOSTNAME}' +# AGENT_DEBUG_WEBHOOKS=true # TAILS_FILES_DIR=/home/indy/.indy_client/tails # TAILS_FILES_VOLUME_CLASS=netapp-file-standard # TAILS_FILES_VOLUME_SIZE=2Gi diff --git a/openshift/templates/agent/agent-deploy.bc.param b/openshift/templates/agent/agent-deploy.bc.param index 56c5651..c94859d 100644 --- a/openshift/templates/agent/agent-deploy.bc.param +++ b/openshift/templates/agent/agent-deploy.bc.param @@ -34,6 +34,7 @@ AGENT_TRACING=false AGENT_TRACE_TARGET=log AGENT_TRACE_TAG= AGENT_TRACE_LABEL='${HOSTNAME}' +AGENT_DEBUG_WEBHOOKS=true TAILS_FILES_DIR=/home/indy/.indy_client/tails TAILS_FILES_VOLUME_CLASS=netapp-file-standard TAILS_FILES_VOLUME_SIZE=2Gi diff --git a/openshift/templates/agent/agent-deploy.bc.prod.param b/openshift/templates/agent/agent-deploy.bc.prod.param index 8f11364..d5607ac 100644 --- a/openshift/templates/agent/agent-deploy.bc.prod.param +++ b/openshift/templates/agent/agent-deploy.bc.prod.param @@ -34,6 +34,7 @@ AGENT_READ_ONLY_LEDGER=true # AGENT_TRACE_TARGET=log # AGENT_TRACE_TAG= # AGENT_TRACE_LABEL='${HOSTNAME}' +# AGENT_DEBUG_WEBHOOKS=true # TAILS_FILES_DIR=/home/indy/.indy_client/tails # TAILS_FILES_VOLUME_CLASS=netapp-file-standard # TAILS_FILES_VOLUME_SIZE=2Gi diff --git a/openshift/templates/agent/agent-deploy.bc.test.param b/openshift/templates/agent/agent-deploy.bc.test.param index 61bbfce..83a2007 100644 --- a/openshift/templates/agent/agent-deploy.bc.test.param +++ b/openshift/templates/agent/agent-deploy.bc.test.param @@ -34,6 +34,7 @@ AGENT_READ_ONLY_LEDGER=true # AGENT_TRACE_TARGET=log # AGENT_TRACE_TAG= # AGENT_TRACE_LABEL='${HOSTNAME}' +# AGENT_DEBUG_WEBHOOKS=true # TAILS_FILES_DIR=/home/indy/.indy_client/tails # TAILS_FILES_VOLUME_CLASS=netapp-file-standard # TAILS_FILES_VOLUME_SIZE=2Gi diff --git a/openshift/templates/agent/agent-deploy.yaml b/openshift/templates/agent/agent-deploy.yaml index 9d3edcf..0a50181 100644 --- a/openshift/templates/agent/agent-deploy.yaml +++ b/openshift/templates/agent/agent-deploy.yaml @@ -342,6 +342,8 @@ objects: value: ${AGENT_TRACE_TAG} - name: ACAPY_TRACE_LABEL value: ${AGENT_TRACE_LABEL} + - name: ACAPY_DEBUG_WEBHOOKS + value: ${AGENT_DEBUG_WEBHOOKS} - name: TAILS_FILES_DIR value: ${TAILS_FILES_DIR} - name: TAILS_SERVER_BASE_URL @@ -579,6 +581,11 @@ parameters: description: Label (agent name) used logging events. Supports environment variables, '${HOSTNAME}' for example. required: false value: "'${HOSTNAME}'" + - name: AGENT_DEBUG_WEBHOOKS + displayName: Debug Webooks + description: When set to 'true' the webhooks contain the full webhook payload rather than the default abbreviated payload. + required: true + value: "true" # =============================================================================== # Tails Files Configuration #--------------------------------------------------------------------------------