mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-01 02:12:50 +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 {
|
||||
// DatabrokerStorageConnection databroker storage connection string
|
||||
DatabrokerStorageConnection *string `json:"databrokerStorageConnection,omitempty"`
|
||||
|
||||
// SharedSecret shared secret
|
||||
SharedSecret []byte `json:"sharedSecret"`
|
||||
}
|
||||
|
||||
// Bundle defines model for Bundle.
|
||||
|
|
|
@ -166,6 +166,12 @@ components:
|
|||
databrokerStorageConnection:
|
||||
type: string
|
||||
description: databroker storage connection string
|
||||
sharedSecret:
|
||||
type: string
|
||||
format: byte
|
||||
description: shared secret
|
||||
required:
|
||||
- sharedSecret
|
||||
|
||||
Bundle:
|
||||
type: object
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue