this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Services for the VM

+51
+14
k8s/nebula/vm/pbx/template/svc-ssh.yaml
··· 1 + apiVersion: v1 2 + kind: Service 3 + metadata: 4 + name: freepbx-ssh 5 + namespace: kubevirt 6 + spec: 7 + selector: 8 + freepbx: "true" 9 + vm.home.arpa/os: freepbx 10 + ports: 11 + - port: 22 12 + protocol: TCP 13 + targetPort: 22 14 +
+13
k8s/nebula/vm/pbx/template/svc-ui.yaml
··· 1 + apiVersion: v1 2 + kind: Service 3 + metadata: 4 + name: freepbx-ui 5 + namespace: kubevirt 6 + spec: 7 + selector: 8 + freepbx: "true" 9 + vm.home.arpa/os: freepbx 10 + ports: 11 + - port: 443 12 + protocol: TCP 13 + targetPort: 443
+24
k8s/nebula/vm/pbx/template/svc-voip.yaml
··· 1 + apiVersion: v1 2 + kind: Service 3 + metadata: 4 + name: freepbx-voip 5 + namespace: kubevirt 6 + spec: 7 + ipFamilyPolicy: PreferDualStack 8 + selector: 9 + freepbx: "true" 10 + vm.home.arpa/os: freepbx 11 + ports: 12 + - port: 5060 13 + protocol: TCP 14 + targetPort: 5060 15 + - port: 5060 16 + protocol: UDP 17 + targetPort: 5060 18 + - port: 5061 19 + protocol: TCP 20 + targetPort: 5061 21 + - port: 5061 22 + protocol: UDP 23 + targetPort: 5061 24 +