apiVersion: v1 kind: Service metadata: name: gitea-http namespace: gitea labels: app: gitea spec: type: ClusterIP ports: - name: http port: 3000 targetPort: 3000 protocol: TCP selector: app: gitea --- apiVersion: v1 kind: Service metadata: name: gitea-ssh namespace: gitea labels: app: gitea spec: type: NodePort ports: - name: ssh port: 22 targetPort: 22 nodePort: 30022 protocol: TCP selector: app: gitea