Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wildfly-security/wildfly-elytron
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8cb197b13253a712dffb3626d331b279a591d2b9
Choose a base ref
..
head repository: wildfly-security/wildfly-elytron
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47c1d92db0edd6c01002349c2073a956a74d687b
Choose a head ref
Showing with 2 additions and 6 deletions.
  1. +2 −6 _posts/2024-01-30-securing-wildfly-apps-oidc-k8s.adoc
8 changes: 2 additions & 6 deletions _posts/2024-01-30-securing-wildfly-apps-oidc-k8s.adoc
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ The steps provided in this guide use minikube.
* A public container registry to host your application's Docker image.
+
For example, https://hub.docker.com/[Docker
Hub], or https://quay.io/repository/[Quay.io].
Hub].
* https://helm.sh/docs/intro/install/[Helm Chart].


@@ -83,7 +83,7 @@ For more information, see the Keycloak documentation on how to https://www.keycl

== Build a docker image of the application

To build a Docker image from your application so that you can push it to a container repository, such as Quay.io or Docker Hub, follow these steps:
To build a Docker image from your application so that you can push it to a container repository, such as Docker Hub, follow these steps:

. Navigate to the application's directory.

@@ -123,7 +123,6 @@ docker login __CONTAINER_REGISTRY__
+
Substitute __CONTAINER_REGISTRY__ as follows:

* For Quay, use `quay.io`.
* For Docker Hub, use `docker.io`.

. Create a new tag for your image.
@@ -135,7 +134,6 @@ docker tag simple-webapp-oidc __TAGGED_IMAGE__
+
Substitute __TAGGED_IMAGE__ as follows:

* For Quay, use the form `quay.io/__USERNAME__/simple-webapp-oidc`.
* For Docker Hub, use `__USERNAME__/simple-webapp-oidc`.

. Verify that you see the tagged image in Docker images.
@@ -157,7 +155,6 @@ $ docker push __TAGGED_IMAGE__:latest
+
Substitute __TAGGED_IMAGE__ as follows:

* For Quay, use the form `quay.io/__USERNAME__/simple-webapp-oidc`.
* For Docker Hub, use the form `__USERNAME__/simple-webapp-oidc`.


@@ -202,7 +199,6 @@ deploy:
+
Replace <IMAGE_NAME> with the name of the image, as follows:
+
* If you used Quay, add the name in the form `quay.io/__USERNAME__/simple-webapp-oidc`.
* If you used Docker Hub, add the name in the form `__USERNAME__/simple-webapp-oidc`.

+