-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into b-website-fix-k8s-config-link
* master: (34 commits) Use Shamir as KeK when migrating from auto-seal to shamir (#8172) changelog++ ssh backend: support at character in role name (#8038) Fix typo in YAML markup (#8194) Fix typo (#8192) Fix k8s injector examples (#8179) update dependencies, patch nextjs config (#8184) Strip unnecessary payload in AD root cred rotation example (#8160) New Website! (#8154) Update CHANGELOG.md changelog++ Fix panic when listener fails to startup (#8174) Create network layer abstraction to allow in-memory cluster traffic (#8173) Update test var name and tidy Factor out mysqlhelper so we can create mysql docker containers in other tests. (#8167) changelog++ changelog++ Pull wrapping creation to a var (#8137) ldap, okta: fix renewal when login policies are empty (#8072) Update CHANGELOG.md ...
- Loading branch information
Showing
1,416 changed files
with
109,905 additions
and
106,124 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
docker: | ||
- image: circleci/buildpack-deps | ||
shell: /usr/bin/env bash -euo pipefail -c | ||
steps: | ||
- checkout | ||
- setup_remote_docker | ||
- run: | ||
name: Diff package-lock.json | ||
command: | | ||
echo 'export PACKAGE_LOCK_CHANGED=$(git diff --name-only $(git log --pretty=format:'%h' -n1 HEAD~1)...HEAD | grep -c website/package-lock.json)' >> $BASH_ENV | ||
- run: | ||
name: Build Docker Image if Necessary | ||
command: | | ||
if [ "$CIRCLE_BRANCH" = "master" ] && [ $PACKAGE_LOCK_CHANGED -gt 0 ]; then | ||
cd website/ | ||
docker build -t hashicorp/vault-website:$CIRCLE_SHA1 . | ||
docker tag hashicorp/vault-website:$CIRCLE_SHA1 hashicorp/vault-website:latest | ||
docker login -u $DOCKER_USER -p $DOCKER_PASS | ||
docker push hashicorp/vault-website | ||
else | ||
echo "Not building a new website docker image - branch is not master and/or dependencies have not changed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.