update docs

This commit is contained in:
Stavros kois
2023-01-30 15:58:40 +02:00
parent 973a903817
commit 398355fbad
5 changed files with 40 additions and 0 deletions

View File

@@ -21,6 +21,9 @@
| controllers.[controller-name].parallelism | `int` | ❌ | ❌ | `1` | Define the parallelism |
| controllers.[controller-name].ttlSecondsAfterFinished | `int` | ❌ | ❌ | `120` | Define the ttlSecondsAfterFinished |
| controllers.[controller-name].activeDeadlineSeconds | `int` | ❌ | ❌ | | Define the activeDeadlineSeconds |
| controllers.[controller-name].podSpec | `dict` | ✅ | ❌ | `{}` | Holds the pod definition |
| controllers.[controller-name].podSpec.labels | `dict` | ❌ | ✅ | `{}` | Pod Labels |
| controllers.[controller-name].podSpec.annotations | `dict` | ❌ | ✅ | `{}` | Pod Annotations |
---
@@ -59,6 +62,10 @@ controllers:
parallelism: 5
ttlSecondsAfterFinished: 100
activeDeadlineSeconds: 100
podSpec:
labels: {}
annotations: {}
other-controller-name:
enabled: true
primary: false
@@ -66,4 +73,5 @@ controllers:
labels: {}
annotations: {}
schedule: "* * * * *"
podSpec: {}
```

View File

@@ -13,6 +13,9 @@
| controllers.[controller-name].rollingUpdate | `dict` | ❌ | ❌ | `{}` | Holds the rollingUpdate options, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.maxUnavailable | `int` | ❌ | ❌ | | Define the maxUnavailable, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.maxSurge | `int` | ❌ | ❌ | | Define the maxSurge, Only when strategy is RollingUpdate |
| controllers.[controller-name].podSpec | `dict` | ✅ | ❌ | `{}` | Holds the pod definition |
| controllers.[controller-name].podSpec.labels | `dict` | ❌ | ✅ | `{}` | Pod Labels |
| controllers.[controller-name].podSpec.annotations | `dict` | ❌ | ✅ | `{}` | Pod Annotations |
---
@@ -45,6 +48,10 @@ controllers:
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
podSpec:
labels: {}
annotations: {}
other-controller-name:
enabled: true
primary: false
@@ -57,4 +64,5 @@ controllers:
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
podSpec: {}
```

View File

@@ -13,6 +13,9 @@
| controllers.[controller-name].rollingUpdate | `dict` | ❌ | ❌ | `{}` | Holds the rollingUpdate options, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.maxUnavailable | `int` | ❌ | ❌ | | Define the maxUnavailable, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.maxSurge | `int` | ❌ | ❌ | | Define the maxSurge, Only when strategy is RollingUpdate |
| controllers.[controller-name].podSpec | `dict` | ✅ | ❌ | `{}` | Holds the pod definition |
| controllers.[controller-name].podSpec.labels | `dict` | ❌ | ✅ | `{}` | Pod Labels |
| controllers.[controller-name].podSpec.annotations | `dict` | ❌ | ✅ | `{}` | Pod Annotations |
---
@@ -45,6 +48,10 @@ controllers:
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
podSpec:
labels: {}
annotations: {}
other-controller-name:
enabled: true
primary: false
@@ -57,4 +64,5 @@ controllers:
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
podSpec: {}
```

View File

@@ -15,6 +15,9 @@
| controllers.[controller-name].parallelism | `int` | ❌ | ❌ | `1` | Define the parallelism |
| controllers.[controller-name].ttlSecondsAfterFinished | `int` | ❌ | ❌ | `120` | Define the ttlSecondsAfterFinished |
| controllers.[controller-name].activeDeadlineSeconds | `int` | ❌ | ❌ | | Define the activeDeadlineSeconds |
| controllers.[controller-name].podSpec | `dict` | ✅ | ❌ | `{}` | Holds the pod definition |
| controllers.[controller-name].podSpec.labels | `dict` | ❌ | ✅ | `{}` | Pod Labels |
| controllers.[controller-name].podSpec.annotations | `dict` | ❌ | ✅ | `{}` | Pod Annotations |
---
@@ -47,10 +50,15 @@ controllers:
parallelism: 5
ttlSecondsAfterFinished: 100
activeDeadlineSeconds: 100
podSpec:
labels: {}
annotations: {}
other-controller-name:
enabled: true
primary: false
type: Job
labels: {}
annotations: {}
podSpec: {}
```

View File

@@ -13,6 +13,9 @@
| controllers.[controller-name].rollingUpdate | `dict` | ❌ | ❌ | `{}` | Holds the rollingUpdate options, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.maxUnavailable | `int` | ❌ | ❌ | | Define the maxUnavailable, Only when strategy is RollingUpdate |
| controllers.[controller-name].rollingUpdate.partition | `int` | ❌ | ❌ | | Define the partition, Only when strategy is RollingUpdate |
| controllers.[controller-name].podSpec | `dict` | ✅ | ❌ | `{}` | Holds the pod definition |
| controllers.[controller-name].podSpec.labels | `dict` | ❌ | ✅ | `{}` | Pod Labels |
| controllers.[controller-name].podSpec.annotations | `dict` | ❌ | ✅ | `{}` | Pod Annotations |
---
@@ -45,6 +48,10 @@ controllers:
rollingUpdate:
maxUnavailable: 1
partition: 1
podSpec:
labels: {}
annotations: {}
other-controller-name:
enabled: true
primary: false
@@ -57,4 +64,5 @@ controllers:
rollingUpdate:
maxUnavailable: 1
partition: 1
podSpec: {}
```