gyfora commented on code in PR #202:
URL: 
https://github.com/apache/flink-kubernetes-operator/pull/202#discussion_r873198656


##########
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/config/KubernetesOperatorConfigOptions.java:
##########
@@ -141,4 +142,11 @@ public class KubernetesOperatorConfigOptions {
                     .noDefaultValue()
                     .withDescription(
                             "Whether to enable recovery of missing/deleted 
jobmanager deployments. False by default for Flink 1.14, true for newer Flink 
version.");
+
+    public static final ConfigOption<Map<String, String>> 
JAR_ARTIFACT_HTTP_HEADER =
+            ConfigOptions.key("kubernetes.operator.user.artifacts.http.header")
+                    .mapType()
+                    .noDefaultValue()
+                    .withDescription(
+                            "Custom HTTP header for a Flink job. Expected 
format: headerKey1:headerValue1,headerKey2:headerValue2.");

Review Comment:
   Could we change this to: 
   ```
   Custom HTTP header for HttpArtifactFetcher. The header will be applied when 
getting the session job artifacts.  Expected format: 
headerKey1:headerValue1,headerKey2:headerValue2.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to