Skip to content

Commit

Permalink
Add ACAPY_REQUESTS_THROUGH_PUBLIC_DID to address breaking changes
Browse files Browse the repository at this point in the history
- Related to openwallet-foundation/acapy#2034

Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed Apr 19, 2023
1 parent 25b1144 commit d04cc08
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
ACAPY_LOG_LEVEL=WARNING
ACAPY_INVITE_PUBLIC=true
ACAPY_PUBLIC_INVITES=true
ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
ACAPY_AUTO_ACCEPT_INVITES=true
ACAPY_AUTO_ACCEPT_REQUESTS=true
ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
# ACAPY_LOG_LEVEL=WARNING
# ACAPY_INVITE_PUBLIC=true
# ACAPY_PUBLIC_INVITES=true
# ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
# ACAPY_AUTO_ACCEPT_INVITES=true
# ACAPY_AUTO_ACCEPT_REQUESTS=true
# ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
# ACAPY_LOG_LEVEL=WARNING
# ACAPY_INVITE_PUBLIC=true
# ACAPY_PUBLIC_INVITES=true
# ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
# ACAPY_AUTO_ACCEPT_INVITES=true
# ACAPY_AUTO_ACCEPT_REQUESTS=true
# ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
ACAPY_LOG_LEVEL=WARNING
ACAPY_INVITE_PUBLIC=true
ACAPY_PUBLIC_INVITES=true
ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
ACAPY_AUTO_ACCEPT_INVITES=false
ACAPY_AUTO_ACCEPT_REQUESTS=false
ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
ACAPY_LOG_LEVEL=WARNING
ACAPY_INVITE_PUBLIC=true
ACAPY_PUBLIC_INVITES=true
ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
ACAPY_AUTO_ACCEPT_INVITES=false
ACAPY_AUTO_ACCEPT_REQUESTS=false
ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
# ACAPY_LOG_LEVEL=WARNING
# ACAPY_INVITE_PUBLIC=true
# ACAPY_PUBLIC_INVITES=true
# ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
# ACAPY_AUTO_ACCEPT_INVITES=false
# ACAPY_AUTO_ACCEPT_REQUESTS=false
# ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
ACAPY_LOG_LEVEL=WARNING
ACAPY_INVITE_PUBLIC=true
ACAPY_PUBLIC_INVITES=true
ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
ACAPY_AUTO_ACCEPT_INVITES=false
ACAPY_AUTO_ACCEPT_REQUESTS=false
ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
# ACAPY_LOG_LEVEL=WARNING
# ACAPY_INVITE_PUBLIC=true
# ACAPY_PUBLIC_INVITES=true
# ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
# ACAPY_AUTO_ACCEPT_INVITES=false
# ACAPY_AUTO_ACCEPT_REQUESTS=false
# ACAPY_AUTO_PING_CONNECTION=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ACAPY_GENESIS_TRANSACTIONS_LIST=ledgers-candy.yaml
# ACAPY_LOG_LEVEL=WARNING
# ACAPY_INVITE_PUBLIC=true
# ACAPY_PUBLIC_INVITES=true
# ACAPY_REQUESTS_THROUGH_PUBLIC_DID=true
# ACAPY_AUTO_ACCEPT_INVITES=false
# ACAPY_AUTO_ACCEPT_REQUESTS=false
# ACAPY_AUTO_PING_CONNECTION=true
Expand Down
7 changes: 7 additions & 0 deletions openshift/templates/issuer-agent/issuer-agent-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,8 @@ objects:
value: ${ACAPY_INVITE_PUBLIC}
- name: ACAPY_PUBLIC_INVITES
value: ${ACAPY_PUBLIC_INVITES}
- name: ACAPY_REQUESTS_THROUGH_PUBLIC_DID
value: ${ACAPY_REQUESTS_THROUGH_PUBLIC_DID}

- name: ACAPY_AUTO_ACCEPT_INVITES
value: ${ACAPY_AUTO_ACCEPT_INVITES}
Expand Down Expand Up @@ -583,6 +585,11 @@ parameters:
description: Send invitations out, and receive connection requests, using the public DID for the agent.
required: true
value: 'true'
- name: ACAPY_REQUESTS_THROUGH_PUBLIC_DID
displayName: Requests Through Public DID
description: Allow agent to receive unsolicited connection requests, using the public DID for the agent. Defaults to false in aca-py.
required: true
value: 'true'

- name: ACAPY_AUTO_ACCEPT_INVITES
displayName: ACAPY_AUTO_ACCEPT_INVITES
Expand Down

0 comments on commit d04cc08

Please sign in to comment.