This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev-2.1.3
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev-2.1.3 by this push:
new c54adaf2d [Improve] default k8s.ingress.class improvement
c54adaf2d is described below
commit c54adaf2d8acf33df7c1582aa7a9639fde2cdd0b
Author: benjobs <[email protected]>
AuthorDate: Wed Jan 3 13:05:14 2024 +0800
[Improve] default k8s.ingress.class improvement
---
.../main/scala/org/apache/streampark/common/conf/K8sFlinkConfig.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/streampark-common/src/main/scala/org/apache/streampark/common/conf/K8sFlinkConfig.scala
b/streampark-common/src/main/scala/org/apache/streampark/common/conf/K8sFlinkConfig.scala
index bda675186..8666cb9ca 100644
---
a/streampark-common/src/main/scala/org/apache/streampark/common/conf/K8sFlinkConfig.scala
+++
b/streampark-common/src/main/scala/org/apache/streampark/common/conf/K8sFlinkConfig.scala
@@ -62,7 +62,7 @@ object K8sFlinkConfig {
*/
val ingressClass: InternalOption = InternalOption(
key = "streampark.flink-k8s.ingress.class",
- defaultValue = "streampark",
+ defaultValue = "nginx",
classType = classOf[java.lang.String],
description = "Direct ingress to the ingress controller."
)