woodpecker/pipeline/backend/kubernetes
Thomas Anderson de53b906e8
Add ports into pipeline backend step model (#2656)
Closes #2655.


[Pipeline](https://woodpecker-ci.org/docs/next/usage/services#complete-pipeline-example):
```yaml
services:
  database:
    image: mysql
    environment:
      - MYSQL_DATABASE=test
      - MYSQL_ROOT_PASSWORD=example
    ports:
      - 3306

steps:
  get-version:
    image: ubuntu
    commands:
      - ( apt update && apt dist-upgrade -y && apt install -y mysql-client 2>&1 )> /dev/null
      - sleep 60s # need to wait for mysql-server init
      - echo 'SHOW VARIABLES LIKE "version"' | mysql -uroot -hdatabase test -pexample
```

Service:
```yaml
apiVersion: v1
kind: Service
metadata:
  name: wp-01hdq6gbkw1mn6k1655fs3rntf-0-services-0
  namespace: woodpecker-runtime
  ...
  selfLink: >-
    /api/v1/namespaces/woodpecker-runtime/services/wp-01hdq6gbkw1mn6k1655fs3rntf-0-services-0
status:
  loadBalancer: {}
spec:
  ports:
    - protocol: TCP
      port: 3306
      targetPort: 3306
  selector:
    step: database
  clusterIP: 10.43.180.120
  clusterIPs:
    - 10.43.180.120
  type: ClusterIP
  sessionAffinity: None
  ipFamilies:
    - IPv4
  ipFamilyPolicy: SingleStack
  internalTrafficPolicy: Cluster
```
2023-11-02 04:12:41 +01:00
..
flags.go Make sure we dont have hidden options for backend and pipeline compiler (#2123) 2023-08-07 21:13:26 +02:00
kubernetes.go Add ports into pipeline backend step model (#2656) 2023-11-02 04:12:41 +01:00
pod.go Let the backend engine report the current platform (#2688) 2023-11-01 15:38:37 +01:00
service.go Add ports into pipeline backend step model (#2656) 2023-11-02 04:12:41 +01:00
service_test.go Add ports into pipeline backend step model (#2656) 2023-11-02 04:12:41 +01:00
utils.go Make sure we dont have hidden options for backend and pipeline compiler (#2123) 2023-08-07 21:13:26 +02:00
volume.go Make sure we dont have hidden options for backend and pipeline compiler (#2123) 2023-08-07 21:13:26 +02:00
volume_test.go Add some tests (#2652) 2023-10-28 13:37:54 +02:00