woodpecker/pipeline/frontend/yaml
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
..
compiler Add ports into pipeline backend step model (#2656) 2023-11-02 04:12:41 +01:00
constraint Move skip-ci back in front of config fetching (#2555) 2023-10-09 18:15:53 +02:00
linter Check for correct license header (#2137) 2023-08-10 11:06:00 +02:00
matrix Check for correct license header (#2137) 2023-08-10 11:06:00 +02:00
types Add ports into pipeline backend step model (#2656) 2023-11-02 04:12:41 +01:00
utils fix(deps): update module github.com/docker/distribution to v2.8.3+incompatible (#2517) 2023-10-03 09:35:40 +02:00
error.go Use modern error handling and enforce it via lint (#1327) 2023-02-02 00:08:02 +01:00
parse.go Remove deprecated options parsing (#2480) 2023-09-20 13:48:34 +02:00
parse_test.go Remove deprecated options parsing (#2480) 2023-09-20 13:48:34 +02:00