Run the operator tests using a fresh build of Keycloak
This commit is contained in:
parent
f3c3bb5001
commit
541043c862
5 changed files with 31 additions and 3 deletions
12
.github/workflows/operator-ci.yml
vendored
12
.github/workflows/operator-ci.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Create the Keycloak distribution
|
- name: Create the Keycloak distribution
|
||||||
run: |
|
run: |
|
||||||
mvn clean install -DskipTests -DskipExamples -DskipTestsuite
|
mvn clean install -Pdistribution -DskipTests -DskipExamples -DskipTestsuite
|
||||||
|
|
||||||
- name: Setup Minikube-Kubernetes
|
- name: Setup Minikube-Kubernetes
|
||||||
uses: manusa/actions-setup-minikube@v2.4.3
|
uses: manusa/actions-setup-minikube@v2.4.3
|
||||||
|
@ -41,6 +41,15 @@ jobs:
|
||||||
kubernetes version: v1.22.3
|
kubernetes version: v1.22.3
|
||||||
github token: ${{ secrets.GITHUB_TOKEN }}
|
github token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
driver: docker
|
driver: docker
|
||||||
|
|
||||||
|
- name: Build the Keycloak Docker image
|
||||||
|
run: |
|
||||||
|
cd quarkus
|
||||||
|
cp dist/target/keycloak-*.tar.gz container/
|
||||||
|
cd container
|
||||||
|
eval $(minikube -p minikube docker-env)
|
||||||
|
docker build --build-arg KEYCLOAK_DIST=$(ls keycloak-*.tar.gz) . -t keycloak:${GITHUB_SHA}
|
||||||
|
|
||||||
- name: Build , deploy and test operator in minikube
|
- name: Build , deploy and test operator in minikube
|
||||||
run: |
|
run: |
|
||||||
cd operator
|
cd operator
|
||||||
|
@ -48,4 +57,5 @@ jobs:
|
||||||
mvn clean verify \
|
mvn clean verify \
|
||||||
-Dquarkus.container-image.build=true -Dquarkus.container-image.tag=test \
|
-Dquarkus.container-image.build=true -Dquarkus.container-image.tag=test \
|
||||||
-Dquarkus.kubernetes.deployment-target=kubernetes \
|
-Dquarkus.kubernetes.deployment-target=kubernetes \
|
||||||
|
-Dquarkus.jib.jvm-arguments="-Djava.util.logging.manager=org.jboss.logmanager.LogManager","-Doperator.keycloak.image=keycloak:${GITHUB_SHA}","-Doperator.keycloak.image-pull-policy=Never" \
|
||||||
--no-transfer-progress -Dtest.operator.deployment=remote
|
--no-transfer-progress -Dtest.operator.deployment=remote
|
|
@ -17,6 +17,20 @@ Build the Docker image with:
|
||||||
mvn clean package -Doperator -Dquarkus.container-image.build=true
|
mvn clean package -Doperator -Dquarkus.container-image.build=true
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
The Keycloak image can be configured, when starting the operator, using the Java property:
|
||||||
|
|
||||||
|
```
|
||||||
|
operator.keycloak.image
|
||||||
|
```
|
||||||
|
|
||||||
|
And the imagePullPolicy with:
|
||||||
|
|
||||||
|
```
|
||||||
|
operator.keycloak.image-pull-policy
|
||||||
|
```
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
### Quick start on Minikube
|
### Quick start on Minikube
|
||||||
|
|
|
@ -28,5 +28,6 @@ public interface Config {
|
||||||
|
|
||||||
interface Keycloak {
|
interface Keycloak {
|
||||||
String image();
|
String image();
|
||||||
|
String imagePullPolicy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,6 +105,8 @@ public class KeycloakDeployment extends OperatorManagedResource {
|
||||||
serverConfig.putAll(keycloakCR.getSpec().getServerConfiguration());
|
serverConfig.putAll(keycloakCR.getSpec().getServerConfiguration());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
container.setImagePullPolicy(config.keycloak().imagePullPolicy());
|
||||||
|
|
||||||
container.setEnv(serverConfig.entrySet().stream()
|
container.setEnv(serverConfig.entrySet().stream()
|
||||||
.map(e -> new EnvVarBuilder().withName(e.getKey()).withValue(e.getValue()).build())
|
.map(e -> new EnvVarBuilder().withName(e.getKey()).withValue(e.getValue()).build())
|
||||||
.collect(Collectors.toList()));
|
.collect(Collectors.toList()));
|
||||||
|
|
|
@ -6,3 +6,4 @@ quarkus.operator-sdk.crd.validate=false
|
||||||
|
|
||||||
# Operator config
|
# Operator config
|
||||||
operator.keycloak.image=quay.io/keycloak/keycloak-x:latest
|
operator.keycloak.image=quay.io/keycloak/keycloak-x:latest
|
||||||
|
operator.keycloak.image-pull-policy=Always
|
||||||
|
|
Loading…
Reference in a new issue