diff --git a/website/docs/install.md b/website/docs/install.md index da689f27b3a..188bd6fde4d 100644 --- a/website/docs/install.md +++ b/website/docs/install.md @@ -56,14 +56,14 @@ Currently the most reliable way of installing Gatekeeper is to build and install * Build and push Gatekeeper image: ```sh export DESTINATION_GATEKEEPER_IMAGE= - make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE OUTPUT_TYPE=type=registry + make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE OUTPUT_TYPE=type=registry ``` > If you want to use a local image, don't set OUTPUT_TYPE and it will default to `OUTPUT_TYPE=type=docker`. * Finally, deploy: ```sh - make deploy REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE + make deploy REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.10.x/install.md b/website/versioned_docs/version-v3.10.x/install.md index b98f9d7c970..522fba4db20 100644 --- a/website/versioned_docs/version-v3.10.x/install.md +++ b/website/versioned_docs/version-v3.10.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.11.x/install.md b/website/versioned_docs/version-v3.11.x/install.md index 9ffc1077197..3248e7b56af 100644 --- a/website/versioned_docs/version-v3.11.x/install.md +++ b/website/versioned_docs/version-v3.11.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.12.x/install.md b/website/versioned_docs/version-v3.12.x/install.md index 2c18863ec6e..ce4c3003e77 100644 --- a/website/versioned_docs/version-v3.12.x/install.md +++ b/website/versioned_docs/version-v3.12.x/install.md @@ -56,14 +56,14 @@ Currently the most reliable way of installing Gatekeeper is to build and install * Build and push Gatekeeper image: ```sh export DESTINATION_GATEKEEPER_IMAGE= - make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE OUTPUT_TYPE=type=registry + make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE OUTPUT_TYPE=type=registry ``` > If you want to use a local image, don't set OUTPUT_TYPE and it will default to `OUTPUT_TYPE=type=docker`. * Finally, deploy: ```sh - make deploy REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE + make deploy REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.13.x/install.md b/website/versioned_docs/version-v3.13.x/install.md index 0fba3ffaba3..8097c093b8f 100644 --- a/website/versioned_docs/version-v3.13.x/install.md +++ b/website/versioned_docs/version-v3.13.x/install.md @@ -56,14 +56,14 @@ Currently the most reliable way of installing Gatekeeper is to build and install * Build and push Gatekeeper image: ```sh export DESTINATION_GATEKEEPER_IMAGE= - make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE OUTPUT_TYPE=type=registry + make docker-buildx REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE OUTPUT_TYPE=type=registry ``` > If you want to use a local image, don't set OUTPUT_TYPE and it will default to `OUTPUT_TYPE=type=docker`. * Finally, deploy: ```sh - make deploy REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE + make deploy REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.14.x/install.md b/website/versioned_docs/version-v3.14.x/install.md index 938bb734d04..baf5c225fe7 100644 --- a/website/versioned_docs/version-v3.14.x/install.md +++ b/website/versioned_docs/version-v3.14.x/install.md @@ -63,7 +63,7 @@ Currently the most reliable way of installing Gatekeeper is to build and install * Finally, deploy: ```sh - make deploy REPOSITORY=$DESTINATION_GATEKEEPER_DOCKER_IMAGE + make deploy REPOSITORY=$DESTINATION_GATEKEEPER_IMAGE ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.6.x/install.md b/website/versioned_docs/version-v3.6.x/install.md index 9455ad09b1e..753e79f1528 100644 --- a/website/versioned_docs/version-v3.6.x/install.md +++ b/website/versioned_docs/version-v3.6.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.7.x/install.md b/website/versioned_docs/version-v3.7.x/install.md index 5044373581f..b44d287a69f 100644 --- a/website/versioned_docs/version-v3.7.x/install.md +++ b/website/versioned_docs/version-v3.7.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.8.x/install.md b/website/versioned_docs/version-v3.8.x/install.md index 9d36fad89b7..eafccca1567 100644 --- a/website/versioned_docs/version-v3.8.x/install.md +++ b/website/versioned_docs/version-v3.8.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm diff --git a/website/versioned_docs/version-v3.9.x/install.md b/website/versioned_docs/version-v3.9.x/install.md index 0b1d862a79b..5fa9d7a3333 100644 --- a/website/versioned_docs/version-v3.9.x/install.md +++ b/website/versioned_docs/version-v3.9.x/install.md @@ -53,16 +53,16 @@ Currently the most reliable way of installing Gatekeeper is to build and install * `cd` to the repository directory. * Define your destination Docker image location: ```sh - export DESTINATION_GATEKEEPER_DOCKER_IMAGE= + export DESTINATION_GATEKEEPER_IMAGE= ``` * Build and push your Docker image: ```sh - make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" - make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make docker-buildx REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" + make docker-push REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` * Finally, deploy: ```sh - make deploy REPOSITORY="$DESTINATION_GATEKEEPER_DOCKER_IMAGE" + make deploy REPOSITORY="$DESTINATION_GATEKEEPER_IMAGE" ``` ### Deploying via Helm