fixed bug where controller did not look at protocol
All checks were successful
Build and Push Docker Image / Build image (push) Successful in 1m54s
All checks were successful
Build and Push Docker Image / Build image (push) Successful in 1m54s
This commit is contained in:
parent
09e9b5dabd
commit
e075ff13fa
@ -55,7 +55,7 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- command:
|
- command:
|
||||||
- /manager
|
- /manager
|
||||||
image: git.acooldomain.co/server-manager/kubernetes-operator:v0.0.8
|
image: git.acooldomain.co/server-manager/kubernetes-operator:v0.0.9
|
||||||
env:
|
env:
|
||||||
- name: CONFIG_PATH
|
- name: CONFIG_PATH
|
||||||
value: /etc/server-manager/config.yaml
|
value: /etc/server-manager/config.yaml
|
||||||
|
@ -599,7 +599,7 @@ func (r *ServerManagerReconciler) BrowserPod(s *servermanagerv1alpha1.ServerMana
|
|||||||
func (r *ServerManagerReconciler) ServerService(s *servermanagerv1alpha1.ServerManager) *corev1.Service {
|
func (r *ServerManagerReconciler) ServerService(s *servermanagerv1alpha1.ServerManager) *corev1.Service {
|
||||||
ports := make([]corev1.ServicePort, len(s.Spec.Server.Ports))
|
ports := make([]corev1.ServicePort, len(s.Spec.Server.Ports))
|
||||||
for i, port := range s.Spec.Server.Ports {
|
for i, port := range s.Spec.Server.Ports {
|
||||||
ports[i] = corev1.ServicePort{NodePort: 0, Port: port.Port, TargetPort: intstr.FromInt32(port.Port), Name: fmt.Sprintf("%s-%d", strings.ToLower(string(port.Protocol)), port.Port)}
|
ports[i] = corev1.ServicePort{NodePort: 0, Port: port.Port, TargetPort: intstr.FromInt32(port.Port), Name: fmt.Sprintf("%s-%d", strings.ToLower(string(port.Protocol)), port.Port), Protocol: port.Protocol}
|
||||||
}
|
}
|
||||||
service := &corev1.Service{
|
service := &corev1.Service{
|
||||||
ObjectMeta: metav1.ObjectMeta{
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user