Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Nov 29, 2021
1 parent 0c73407 commit 9864d87
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/docker-create-and-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ echo "tag message: $2"
echo "buildarg supplied: $3"

echo "tagging version"
#git tag -a $1 -m "$2"
#git push --tags
git tag -a $1 -m "$2"
git push --tags
docker buildx create --name mybuilder
docker buildx use mybuilder
echo "creating containers"
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.web
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM jeroenwillemsen/wrongsecrets:java-rebuild3-no-vault
FROM jeroenwillemsen/wrongsecrets:1.1.0-no-vault

ARG argBasedVersion="1.0.4b"
ARG argBasedVersion="1.1.0"
ENV APP_VERSION=$argBasedVersion
ENV K8S_ENV=Heroku(Docker)
CMD java -jar -Dserver.port=$PORT -Dspring.profiles.active=without-vault application.jar
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For the basic docker exercises you currently require:
You can install it by doing:

```bash
docker run -p 8080:8080 jeroenwillemsen/wrongsecrets:1.0.4-no-vault
docker run -p 8080:8080 jeroenwillemsen/wrongsecrets:1.1.0-no-vault
```

Now you can try to find the secrets by means of solving the challenge offered at:
Expand Down Expand Up @@ -121,9 +121,9 @@ _Can be used for challenges 1-11_

Follow the steps in [the README in the AWS subfolder](aws/README.md).

### GCP challenge 9 and 10 - EXPERIMENTAL
### GCP challenge 9, 10 and 11

_Can be used for challenges 1-10_
_Can be used for challenges 1-11_

Follow the steps in [the README in the GCP subfolder](gcp/README.md). Note that this is [still](https://github.com/commjoen/wrongsecrets/issues/39) [work in progress](https://github.com/commjoen/wrongsecrets/issues/40)

Expand Down
2 changes: 1 addition & 1 deletion aws/k8s/secret-challenge-vault-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
volumeAttributes:
secretProviderClass: "wrongsecrets-aws-secretsmanager"
containers:
- image: jeroenwillemsen/wrongsecrets:1.0.4-k8s-vault
- image: jeroenwillemsen/wrongsecrets:1.1.0-k8s-vault
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion gcp/k8s/secret-challenge-vault-deployment.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
volumeAttributes:
secretProviderClass: "wrongsecrets-gcp-secretsmanager"
containers:
- image: jeroenwillemsen/wrongsecrets:1.0.4-k8s-vault
- image: jeroenwillemsen/wrongsecrets:1.1.0-k8s-vault
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion k8s/secret-challenge-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
name: secret-challenge
spec:
containers:
- image: jeroenwillemsen/wrongsecrets:1.0.4-no-vault
- image: jeroenwillemsen/wrongsecrets:1.1.0-no-vault
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion k8s/secret-challenge-vault-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
spec:
serviceAccountName: vault
containers:
- image: jeroenwillemsen/wrongsecrets:1.0.4-k8s-vault
- image: jeroenwillemsen/wrongsecrets:1.1.0-k8s-vault
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down

0 comments on commit 9864d87

Please sign in to comment.