apiVersion: v1 kind: Service metadata: name: gitea-http namespace: gitea spec: type: ClusterIP ports: - name: http port: 3000 targetPort: 3000 selector: component: web --- apiVersion: v1 kind: Service metadata: name: gitea-ssh namespace: gitea spec: type: LoadBalancer ports: - name: ssh port: 22 targetPort: 2222 protocol: TCP selector: component: web