Skip to content

Commit 1bc94d6

Browse files
authored
Add emailDomain field inbox agent (#42)
Signed-off-by: Imtiaz Uddin <[email protected]>
1 parent a9f4c49 commit 1bc94d6

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

apis/installer/v1alpha1/inbox_agent_types.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ type InboxServerInfo struct {
9999
JMAPSessionEndpoint string `json:"jmapSessionEndpoint"`
100100
WebadminEndpoint string `json:"webadminEndpoint"`
101101
Token string `json:"token"`
102+
EmailDomain string `json:"emailDomain"`
102103
// +optional
103104
CABundle string `json:"caBundle"`
104105
}

charts/inbox-agent/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ The following table lists the configurable parameters of the `inbox-agent` chart
9191
| monitoring.serviceMonitor.labels | Specify the labels for ServiceMonitor. Prometheus crd will select ServiceMonitor using these labels. Only usable when monitoring agent is `prometheus.io/operator`. | <code>{}</code> |
9292
| inboxServer.jmapSessionEndpoint | | <code>"xyz"</code> |
9393
| inboxServer.webadminEndpoint | | <code>"xyz"</code> |
94+
| inboxServer.emailDomain | | <code>"cloud.appscode.com"</code> |
9495
| inboxServer.token | | <code>"xyz"</code> |
9596
| inboxServer.caBundle | | <code>"xyz"</code> |
9697

charts/inbox-agent/values.openapiv3_schema.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,13 +981,16 @@ properties:
981981
properties:
982982
caBundle:
983983
type: string
984+
emailDomain:
985+
type: string
984986
jmapSessionEndpoint:
985987
type: string
986988
token:
987989
type: string
988990
webadminEndpoint:
989991
type: string
990992
required:
993+
- emailDomain
991994
- jmapSessionEndpoint
992995
- token
993996
- webadminEndpoint

charts/inbox-agent/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,6 @@ monitoring:
139139
inboxServer:
140140
jmapSessionEndpoint: "xyz"
141141
webadminEndpoint: "xyz"
142+
emailDomain: "cloud.appscode.com"
142143
token: "xyz"
143144
caBundle: "xyz"

0 commit comments

Comments
 (0)