-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove host field from cloud storage (#228)
Signed-off-by: Masudur Rahman <[email protected]>
- Loading branch information
1 parent
dd84710
commit e238ddd
Showing
5 changed files
with
6 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,13 +99,12 @@ The following table lists the configurable parameters of the `ace` chart and the | |
| global.infra.stash.backup.password | | <code>""</code> | | ||
| global.infra.stash.backup.schedule | | <code>'0 */4 * * *'</code> | | ||
| global.infra.kms.masterKeyURL | location where the secret key resides | <code>""</code> | | ||
| global.infra.kubepack.host | | <code>""</code> | | ||
| global.infra.kubepack.bucket | | <code>""</code> | | ||
| global.infra.kubepack.prefix | | <code>""</code> | | ||
| global.infra.badger.mountPath | | <code>/badger</code> | | ||
| global.infra.badger.levels | | <code>7</code> | | ||
| global.infra.invoice.mountPath | | <code>/billing</code> | | ||
| global.infra.invoice.bucket | host: https://console.cloud.google.com/storage/browser/invoice-storage-demo | <code>gs://invoice-storage-demo</code> | | ||
| global.infra.invoice.bucket | | <code>gs://invoice-storage-demo</code> | | ||
| global.infra.invoice.prefix | | <code>""</code> | | ||
| global.infra.invoice.trackerEmail | | <code>[email protected]</code> | | ||
| settings.db.version | | <code>"13.2"</code> | | ||
|
@@ -177,8 +176,7 @@ The following table lists the configurable parameters of the `ace` chart and the | |
| settings.clusterConnector.repository | | <code>""</code> | | ||
| settings.clusterConnector.tag | | <code>""</code> | | ||
| settings.clusterConnector.pullPolicy | | <code>Always</code> | | ||
| settings.clusterConnector.host | bucket to store cluster-connector yamls | <code>""</code> | | ||
| settings.clusterConnector.bucket | | <code>""</code> | | ||
| settings.clusterConnector.bucket | bucket to store cluster-connector yamls | <code>""</code> | | ||
| settings.clusterConnector.prefix | | <code>""</code> | | ||
| settings.contract.bucket | | <code>""</code> | | ||
| settings.contract.prefix | | <code>""</code> | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,15 +174,13 @@ global: | |
# provider: "Google" | ||
# masterKeyURL: gcpkms://projects/ | ||
kubepack: | ||
host: "" | ||
bucket: "" | ||
prefix: "" | ||
badger: | ||
mountPath: /badger | ||
levels: 7 | ||
invoice: | ||
mountPath: /billing | ||
# host: https://console.cloud.google.com/storage/browser/invoice-storage-demo | ||
bucket: gs://invoice-storage-demo | ||
prefix: "" | ||
trackerEmail: [email protected] | ||
|
@@ -354,7 +352,6 @@ settings: | |
tag: "" | ||
pullPolicy: Always | ||
# bucket to store cluster-connector yamls | ||
host: "" | ||
bucket: "" | ||
prefix: "" | ||
|
||
|