Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Commit 341781a

Browse files
authored
fix(java17): add options for java11 image variants (#2086)
1 parent 645ab3e commit 341781a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

halyard-config/src/main/java/com/netflix/spinnaker/halyard/config/model/v1/node/DeploymentEnvironment.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ public enum ImageVariant {
9595
SLIM("Based on an Alpine image"),
9696
UBUNTU("Based on Canonical's ubuntu:bionic image"),
9797
JAVA8("A variant of SLIM that uses the Java 8 runtime"),
98-
UBUNTU_JAVA8("A variant of UBUNTU that uses the Java 8 runtime");
98+
UBUNTU_JAVA8("A variant of UBUNTU that uses the Java 8 runtime"),
99+
JAVA11("A variant of SLIM that uses the Java 11 runtime"),
100+
UBUNTU_JAVA11("A variant of UBUNTU that uses the Java 11 runtime");
99101

100102
@Getter final String description;
101103

0 commit comments

Comments
 (0)