| 1234567891011121314151617181920 |
- apiVersion: v1
- kind: Service
- metadata:
- name: gogs-service-nodeport
- namespace: nginx-app
- labels:
- app: gogs
- spec:
- selector:
- app: gogs
- ports:
- - name: http
- port: 3000
- targetPort: 3000
- nodePort: 30080 # Expose on port 30080
- - name: ssh
- port: 22
- targetPort: 22
- nodePort: 30022 # Expose SSH on port 30022
- type: NodePort
|