Documentation ¶
Index ¶
- type Keypair
- func (e *Keypair) BuildCertificateTemplate() (*x509.Certificate, error)
- func (_ *Keypair) CheckChanges(a, e, changes *Keypair) error
- func (e *Keypair) CheckExisting(c *fi.Context) bool
- func (e *Keypair) CompareWithID() *string
- func (e *Keypair) Find(c *fi.Context) (*Keypair, error)
- func (o *Keypair) GetLifecycle() *fi.Lifecycle
- func (o *Keypair) GetName() *string
- func (_ *Keypair) Render(c *fi.Context, a, e, changes *Keypair) error
- func (e *Keypair) Run(c *fi.Context) error
- func (o *Keypair) SetLifecycle(lifecycle fi.Lifecycle)
- func (o *Keypair) SetName(name string)
- func (o *Keypair) String() string
- func (o *Keypair) UnmarshalJSON(data []byte) error
- type ManagedFile
- func (s *ManagedFile) CheckChanges(a, e, changes *ManagedFile) error
- func (e *ManagedFile) Find(c *fi.Context) (*ManagedFile, error)
- func (o *ManagedFile) GetLifecycle() *fi.Lifecycle
- func (o *ManagedFile) GetName() *string
- func (_ *ManagedFile) Render(c *fi.Context, a, e, changes *ManagedFile) error
- func (e *ManagedFile) Run(c *fi.Context) error
- func (o *ManagedFile) SetLifecycle(lifecycle fi.Lifecycle)
- func (o *ManagedFile) SetName(name string)
- func (o *ManagedFile) String() string
- func (o *ManagedFile) UnmarshalJSON(data []byte) error
- type MirrorKeystore
- func (s *MirrorKeystore) CheckChanges(a, e, changes *MirrorKeystore) error
- func (e *MirrorKeystore) Find(c *fi.Context) (*MirrorKeystore, error)
- func (e *MirrorKeystore) GetDependencies(tasks map[string]fi.Task) []fi.Task
- func (o *MirrorKeystore) GetLifecycle() *fi.Lifecycle
- func (o *MirrorKeystore) GetName() *string
- func (_ *MirrorKeystore) Render(c *fi.Context, a, e, changes *MirrorKeystore) error
- func (e *MirrorKeystore) Run(c *fi.Context) error
- func (o *MirrorKeystore) SetLifecycle(lifecycle fi.Lifecycle)
- func (o *MirrorKeystore) SetName(name string)
- func (o *MirrorKeystore) String() string
- func (o *MirrorKeystore) UnmarshalJSON(data []byte) error
- type MirrorSecrets
- func (s *MirrorSecrets) CheckChanges(a, e, changes *MirrorSecrets) error
- func (e *MirrorSecrets) Find(c *fi.Context) (*MirrorSecrets, error)
- func (e *MirrorSecrets) GetDependencies(tasks map[string]fi.Task) []fi.Task
- func (o *MirrorSecrets) GetLifecycle() *fi.Lifecycle
- func (o *MirrorSecrets) GetName() *string
- func (_ *MirrorSecrets) Render(c *fi.Context, a, e, changes *MirrorSecrets) error
- func (e *MirrorSecrets) Run(c *fi.Context) error
- func (o *MirrorSecrets) SetLifecycle(lifecycle fi.Lifecycle)
- func (o *MirrorSecrets) SetName(name string)
- func (o *MirrorSecrets) String() string
- func (o *MirrorSecrets) UnmarshalJSON(data []byte) error
- type Secret
- func (s *Secret) CheckChanges(a, e, changes *Secret) error
- func (e *Secret) CheckExisting(c *fi.Context) bool
- func (e *Secret) Find(c *fi.Context) (*Secret, error)
- func (o *Secret) GetLifecycle() *fi.Lifecycle
- func (o *Secret) GetName() *string
- func (_ *Secret) Render(c *fi.Context, a, e, changes *Secret) error
- func (e *Secret) Run(c *fi.Context) error
- func (o *Secret) SetLifecycle(lifecycle fi.Lifecycle)
- func (o *Secret) SetName(name string)
- func (o *Secret) String() string
- func (o *Secret) UnmarshalJSON(data []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Keypair ¶
type Keypair struct { // Name is the name of the keypair Name *string // AlternateNames a list of alternative names for this certificate AlternateNames []string `json:"alternateNames"` // AlternateNameTasks is a collection of subtask AlternateNameTasks []fi.Task `json:"alternateNameTasks"` // Lifecycle is context for a task Lifecycle *fi.Lifecycle // Signer is the keypair to use to sign, for when we want to use an alternative CA Signer *Keypair // Subject is the cerificate subject Subject string `json:"subject"` // Type the type of certificate i.e. CA, server, client etc Type string `json:"type"` // Format stores the api version of kops.Keyset. We are using this info in order to determine if kops // is accessing legacy secrets that do not use keyset.yaml. Format string `json:"format"` }
func (*Keypair) BuildCertificateTemplate ¶ added in v1.10.0
func (e *Keypair) BuildCertificateTemplate() (*x509.Certificate, error)
BuildCertificateTemplate is responsible for constructing a certificate template
func (*Keypair) CheckChanges ¶
func (*Keypair) CheckExisting ¶
It's important always to check for the existing key, so we don't regenerate keys e.g. on terraform
func (*Keypair) CompareWithID ¶ added in v1.10.0
func (*Keypair) GetLifecycle ¶ added in v1.10.0
GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (*Keypair) SetLifecycle ¶ added in v1.10.0
SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (*Keypair) String ¶
String is the stringer function for the task, producing readable output using fi.TaskAsString
func (*Keypair) UnmarshalJSON ¶
UnmarshalJSON implements conversion to JSON, supporitng an alternate specification of the object as a string
type ManagedFile ¶
type ManagedFile struct { Name *string Lifecycle *fi.Lifecycle Location *string Contents *fi.ResourceHolder }
func (*ManagedFile) CheckChanges ¶
func (s *ManagedFile) CheckChanges(a, e, changes *ManagedFile) error
func (*ManagedFile) Find ¶
func (e *ManagedFile) Find(c *fi.Context) (*ManagedFile, error)
func (*ManagedFile) GetLifecycle ¶ added in v1.10.0
func (o *ManagedFile) GetLifecycle() *fi.Lifecycle
GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (*ManagedFile) GetName ¶ added in v1.10.0
func (o *ManagedFile) GetName() *string
GetName returns the Name of the object, implementing fi.HasName
func (*ManagedFile) Render ¶
func (_ *ManagedFile) Render(c *fi.Context, a, e, changes *ManagedFile) error
func (*ManagedFile) SetLifecycle ¶ added in v1.10.0
func (o *ManagedFile) SetLifecycle(lifecycle fi.Lifecycle)
SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (*ManagedFile) SetName ¶ added in v1.10.0
func (o *ManagedFile) SetName(name string)
SetName sets the Name of the object, implementing fi.SetName
func (*ManagedFile) String ¶ added in v1.10.0
func (o *ManagedFile) String() string
String is the stringer function for the task, producing readable output using fi.TaskAsString
func (*ManagedFile) UnmarshalJSON ¶ added in v1.10.0
func (o *ManagedFile) UnmarshalJSON(data []byte) error
UnmarshalJSON implements conversion to JSON, supporitng an alternate specification of the object as a string
type MirrorKeystore ¶ added in v1.10.0
func (*MirrorKeystore) CheckChanges ¶ added in v1.10.0
func (s *MirrorKeystore) CheckChanges(a, e, changes *MirrorKeystore) error
CheckChanges implements fi.Task::CheckChanges
func (*MirrorKeystore) Find ¶ added in v1.10.0
func (e *MirrorKeystore) Find(c *fi.Context) (*MirrorKeystore, error)
Find implements fi.Task::Find
func (*MirrorKeystore) GetDependencies ¶ added in v1.10.0
GetDependencies returns the dependencies for a MirrorKeystore task - it must run after all secrets have been run
func (*MirrorKeystore) GetLifecycle ¶ added in v1.10.0
func (o *MirrorKeystore) GetLifecycle() *fi.Lifecycle
GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (*MirrorKeystore) GetName ¶ added in v1.10.0
func (o *MirrorKeystore) GetName() *string
GetName returns the Name of the object, implementing fi.HasName
func (*MirrorKeystore) Render ¶ added in v1.10.0
func (_ *MirrorKeystore) Render(c *fi.Context, a, e, changes *MirrorKeystore) error
Render implements fi.Task::Render
func (*MirrorKeystore) Run ¶ added in v1.10.0
func (e *MirrorKeystore) Run(c *fi.Context) error
Run implements fi.Task::Run
func (*MirrorKeystore) SetLifecycle ¶ added in v1.10.0
func (o *MirrorKeystore) SetLifecycle(lifecycle fi.Lifecycle)
SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (*MirrorKeystore) SetName ¶ added in v1.10.0
func (o *MirrorKeystore) SetName(name string)
SetName sets the Name of the object, implementing fi.SetName
func (*MirrorKeystore) String ¶ added in v1.10.0
func (o *MirrorKeystore) String() string
String is the stringer function for the task, producing readable output using fi.TaskAsString
func (*MirrorKeystore) UnmarshalJSON ¶ added in v1.10.0
func (o *MirrorKeystore) UnmarshalJSON(data []byte) error
UnmarshalJSON implements conversion to JSON, supporitng an alternate specification of the object as a string
type MirrorSecrets ¶ added in v1.10.0
func (*MirrorSecrets) CheckChanges ¶ added in v1.10.0
func (s *MirrorSecrets) CheckChanges(a, e, changes *MirrorSecrets) error
CheckChanges implements fi.Task::CheckChanges
func (*MirrorSecrets) Find ¶ added in v1.10.0
func (e *MirrorSecrets) Find(c *fi.Context) (*MirrorSecrets, error)
Find implements fi.Task::Find
func (*MirrorSecrets) GetDependencies ¶ added in v1.10.0
GetDependencies returns the dependencies for a MirrorSecrets task - it must run after all secrets have been run
func (*MirrorSecrets) GetLifecycle ¶ added in v1.10.0
func (o *MirrorSecrets) GetLifecycle() *fi.Lifecycle
GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (*MirrorSecrets) GetName ¶ added in v1.10.0
func (o *MirrorSecrets) GetName() *string
GetName returns the Name of the object, implementing fi.HasName
func (*MirrorSecrets) Render ¶ added in v1.10.0
func (_ *MirrorSecrets) Render(c *fi.Context, a, e, changes *MirrorSecrets) error
Render implements fi.Task::Render
func (*MirrorSecrets) Run ¶ added in v1.10.0
func (e *MirrorSecrets) Run(c *fi.Context) error
Run implemements fi.Task::Run
func (*MirrorSecrets) SetLifecycle ¶ added in v1.10.0
func (o *MirrorSecrets) SetLifecycle(lifecycle fi.Lifecycle)
SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (*MirrorSecrets) SetName ¶ added in v1.10.0
func (o *MirrorSecrets) SetName(name string)
SetName sets the Name of the object, implementing fi.SetName
func (*MirrorSecrets) String ¶ added in v1.10.0
func (o *MirrorSecrets) String() string
String is the stringer function for the task, producing readable output using fi.TaskAsString
func (*MirrorSecrets) UnmarshalJSON ¶ added in v1.10.0
func (o *MirrorSecrets) UnmarshalJSON(data []byte) error
UnmarshalJSON implements conversion to JSON, supporitng an alternate specification of the object as a string
type Secret ¶
func (*Secret) CheckChanges ¶
func (*Secret) CheckExisting ¶
It's important always to check for the existing Secret, so we don't regenerate tokens e.g. on terraform
func (*Secret) GetLifecycle ¶ added in v1.10.0
GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (*Secret) SetLifecycle ¶ added in v1.10.0
SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (*Secret) String ¶
String is the stringer function for the task, producing readable output using fi.TaskAsString
func (*Secret) UnmarshalJSON ¶
UnmarshalJSON implements conversion to JSON, supporitng an alternate specification of the object as a string