Skip to content

Commit

Permalink
[#503] support jgroup in headless services for istio
Browse files Browse the repository at this point in the history
  • Loading branch information
johgoe committed Jan 2, 2024
1 parent 8fa5d4f commit 23b1e46
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/resources/serviceports/service_port.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ import (
func GetDefaultPorts() *[]corev1.ServicePort {

ports := []corev1.ServicePort{
{
Name: "tcp-jgroup",
Protocol: "TCP",
Port: 7800,
TargetPort: intstr.FromInt(int(7800)),
},
{
Name: "console-jolokia",
Protocol: "TCP",
Expand Down

0 comments on commit 23b1e46

Please sign in to comment.