You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helm-chart/eoapi-notifier/README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,28 @@ resources:
61
61
memory: 128Mi
62
62
```
63
63
64
+
## Service Account Configuration
65
+
66
+
The chart supports using a custom service account, which is useful when deploying as a subchart:
67
+
68
+
```yaml
69
+
serviceAccount:
70
+
# Allow parent chart to override the service account name
71
+
name: ""
72
+
# When name is provided, use it instead of creating a new one
73
+
create: true
74
+
```
75
+
76
+
### Usage in Parent Chart
77
+
78
+
```yaml
79
+
# charts/eoapi/values.yaml
80
+
eoapi-notifier:
81
+
serviceAccount:
82
+
name: eoapi # Use the parent chart's service account
83
+
create: false
84
+
```
85
+
64
86
## KNative SinkBinding Support
65
87
66
88
The chart automatically creates KNative SinkBinding resources for CloudEvents outputs, resolving object references to URLs via the `K_SINK` environment variable.
0 commit comments