This repository was archived by the owner on Apr 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
core/src/main/java/io/javaoperatorsdk/jenvtest Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ public class KubeAPIServerConfig {
25
25
* Flags to pass to Kube API Server on startup. Key and value are two separated items, like
26
26
* specifying min-request-timeout needs to add in order two values: "--min-request-timeout" and
27
27
* "300" for the actual desired value.
28
+ *
29
+ * See Kubernetes docs for possible flags:
30
+ * https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
28
31
*/
29
32
private final List <String > apiServerFlags ;
30
33
Original file line number Diff line number Diff line change 5
5
6
6
import org .junit .jupiter .api .extension .ExtendWith ;
7
7
8
+ import io .javaoperatorsdk .jenvtest .KubeAPIServerConfig ;
9
+
8
10
import static java .lang .annotation .ElementType .*;
9
11
import static java .lang .annotation .RetentionPolicy .RUNTIME ;
10
12
21
23
String kubeAPIVersion () default NOT_SET ;
22
24
23
25
/**
24
- * Flags to pass to Kube API Server on startup. Key and value are two separated items, like
25
- * specifying min-request-timeout needs to add in order two values: "--min-request-timeout" for
26
- * the key and "300" for the actual desired value.
26
+ * See {@link KubeAPIServerConfig} docs for details.
27
27
*/
28
28
String [] apiServerFlags () default {};
29
29
}
You can’t perform that action at this time.
0 commit comments