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 {
2525 * Flags to pass to Kube API Server on startup. Key and value are two separated items, like
2626 * specifying min-request-timeout needs to add in order two values: "--min-request-timeout" and
2727 * "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/
2831 */
2932 private final List <String > apiServerFlags ;
3033
Original file line number Diff line number Diff line change 55
66import org .junit .jupiter .api .extension .ExtendWith ;
77
8+ import io .javaoperatorsdk .jenvtest .KubeAPIServerConfig ;
9+
810import static java .lang .annotation .ElementType .*;
911import static java .lang .annotation .RetentionPolicy .RUNTIME ;
1012
2123 String kubeAPIVersion () default NOT_SET ;
2224
2325 /**
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.
2727 */
2828 String [] apiServerFlags () default {};
2929}
You can’t perform that action at this time.
0 commit comments