Skip to content

Commit

Permalink
change to headless
Browse files Browse the repository at this point in the history
  • Loading branch information
sethsaperstein-lyft committed Jan 9, 2024
1 parent 173badd commit cff0af6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/controller/flink/job_manager_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,11 @@ func FetchJobManagerServiceCreateObj(app *v1beta1.FlinkApplication, selector str
Labels: GetCommonAppLabels(app),
},
Spec: coreV1.ServiceSpec{
Ports: getJobManagerServicePorts(app),
Selector: serviceLabels,
Ports: getJobManagerServicePorts(app),
Selector: serviceLabels,
Type: coreV1.ServiceTypeClusterIP,
ClusterIP: "None",
ClusterIPs: []string{},
},
}
}
Expand Down

0 comments on commit cff0af6

Please sign in to comment.