mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-02 19:04:14 +02:00
cluster api: add shared secret to the cluster bootstrap params (#5030)
This commit is contained in:
parent
79d5657742
commit
181d5b171d
2 changed files with 9 additions and 0 deletions
|
@ -20,6 +20,9 @@ const (
|
||||||
type BootstrapConfig struct {
|
type BootstrapConfig struct {
|
||||||
// DatabrokerStorageConnection databroker storage connection string
|
// DatabrokerStorageConnection databroker storage connection string
|
||||||
DatabrokerStorageConnection *string `json:"databrokerStorageConnection,omitempty"`
|
DatabrokerStorageConnection *string `json:"databrokerStorageConnection,omitempty"`
|
||||||
|
|
||||||
|
// SharedSecret shared secret
|
||||||
|
SharedSecret []byte `json:"sharedSecret"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bundle defines model for Bundle.
|
// Bundle defines model for Bundle.
|
||||||
|
|
|
@ -166,6 +166,12 @@ components:
|
||||||
databrokerStorageConnection:
|
databrokerStorageConnection:
|
||||||
type: string
|
type: string
|
||||||
description: databroker storage connection string
|
description: databroker storage connection string
|
||||||
|
sharedSecret:
|
||||||
|
type: string
|
||||||
|
format: byte
|
||||||
|
description: shared secret
|
||||||
|
required:
|
||||||
|
- sharedSecret
|
||||||
|
|
||||||
Bundle:
|
Bundle:
|
||||||
type: object
|
type: object
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue