Skip to content

Commit 3f8496f

Browse files
Itso-Dimitrov-CyberArkGitHub Enterprise
authored andcommitted
Merge pull request #17 from Conjur-Enterprise/CNJR-11811-Use-Latest-CLI
CNJR-11811: Update Conjur Open Source to Use the Latest Conjur CLI
2 parents a5ab179 + 41be41f commit 3f8496f

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
- Nothing should go in this section, please add to the latest unreleased version
1111
(and update the corresponding date), or add a new version.
1212

13+
## [0.0.4] - 2025-11-14
14+
15+
### Changed
16+
- Updated Docker Compose, README, and test scripts to use Conjur CLI v9 (CNJR-11811)
17+
1318
## [0.0.3] - 2025-10-16
1419

1520
### Changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,11 @@ admin user.
166166
1. Connect the Conjur Open Source client to the server
167167

168168
This is a one-time action. For the duration of the container’s life or until
169-
additional initcommand is issued, the client and the server remain connected.
169+
additional init command is issued, the client and the server remain connected.
170170

171171
Use the account name that you created in step 5. You will be prompted to trust
172-
the TLS certificate of the server. Type `y` to trust the certificate:
172+
the TLS certificate of the server. Type `y` to trust the certificate. In addition, you will be prompted to select the environment you want to use. Select Conjur Open Source.
173+
173174
```
174175
docker compose exec client conjur init -u https://proxy -a myConjurAccount --self-signed
175176
```
@@ -512,6 +513,7 @@ you can restart your environment as follows:
512513
1. Reconnect the client to the server. Use the account name
513514
that you created in the
514515
[create an admin account](#create-an-admin-account) section above.
516+
You will also be prompted to select the environment - choose Conjur Open Source.
515517
For example:
516518

517519
```

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ services:
8484
restart: on-failure
8585

8686
client:
87-
image: cyberark/conjur-cli:8
87+
image: cyberark/conjur-cli:9
8888
container_name: conjur_client
8989
depends_on: [ proxy ]
9090
entrypoint: sleep

test_workflow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ echo
6565

6666
echo "Step 6: Connect the Conjur client to the Conjur server"
6767
# `echo "Y"` is used to accept the self-signed certificate
68-
echo "Y" | docker container exec -i conjur_client conjur init -u https://proxy -a myConjurAccount --self-signed
68+
echo "Y" | docker container exec -i conjur_client conjur init oss -u https://proxy -a myConjurAccount --self-signed
6969
echo
7070

7171
announce "UNIT 2. Define Policy"

0 commit comments

Comments
 (0)