apiVersion: v1
kind: Service
metadata:
  labels:
    name: isbc
  name: isbc-service
  namespace: development
spec:
  ports:
  - nodePort: 32024
    port: 2024
    name: ssh
    protocol: TCP
    targetPort: 2024
  - nodePort: 32443
    port: 443
    name: https
    protocol: TCP
    targetPort: 443
  - nodePort: 32080
    port: 80
    name: http
    protocol: TCP
    targetPort: 80
  - nodePort: 32022
    port: 2022
    name: adminssh
    protocol: TCP
    targetPort: 22
  selector:
    name: isbc
  sessionAffinity: None
  type: NodePort

