v1alpha1

package
v1.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 30, 2019 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Overview

Package v1alpha1 is the v1alpha1 version of the API. +groupName=argoproj.io +k8s:deepcopy-gen=package,register +k8s:openapi-gen=true

Index

Constants

View Source
const (
	SyncPhasePreSync  = "PreSync"
	SyncPhaseSync     = "Sync"
	SyncPhasePostSync = "PostSync"
)
View Source
const (
	// ApplicationConditionDeletionError indicates that controller failed to delete application
	ApplicationConditionDeletionError = "DeletionError"
	// ApplicationConditionInvalidSpecError indicates that application source is invalid
	ApplicationConditionInvalidSpecError = "InvalidSpecError"
	// ApplicationConditionComparisonError indicates controller failed to compare application state
	ApplicationConditionComparisonError = "ComparisonError"
	// ApplicationConditionSyncError indicates controller failed to automatically sync the application
	ApplicationConditionSyncError = "SyncError"
	// ApplicationConditionUnknownError indicates an unknown controller error
	ApplicationConditionUnknownError = "UnknownError"
	// ApplicationConditionSharedResourceWarning indicates that controller detected resources which belongs to more than one application
	ApplicationConditionSharedResourceWarning = "SharedResourceWarning"
	// ApplicationConditionRepeatedResourceWarning indicates that application source has resource with same Group, Kind, Name, Namespace multiple times
	ApplicationConditionRepeatedResourceWarning = "RepeatedResourceWarning"
)
View Source
const (
	ConnectionStatusSuccessful = "Successful"
	ConnectionStatusFailed     = "Failed"
)

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)
View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion                = schema.GroupVersion{Group: application.Group, Version: "v1alpha1"}
	ApplicationSchemaGroupVersionKind = schema.GroupVersionKind{Group: application.Group, Version: "v1alpha1", Kind: application.ApplicationKind}
	AppProjectSchemaGroupVersionKind  = schema.GroupVersionKind{Group: application.Group, Version: "v1alpha1", Kind: application.AppProjectKind}
)
View Source
var (
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
	AddToScheme   = SchemeBuilder.AddToScheme
)

Functions

func GetOpenAPIDefinitions added in v1.0.0

func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group-qualified GroupResource.

func UnmarshalToUnstructured

func UnmarshalToUnstructured(resource string) (*unstructured.Unstructured, error)

Types

type AWSAuthConfig added in v0.9.0

type AWSAuthConfig struct {
	// ClusterName contains AWS cluster name
	ClusterName string `json:"clusterName,omitempty" protobuf:"bytes,1,opt,name=clusterName"`

	// RoleARN contains optional role ARN. If set then AWS IAM Authenticator assume a role to perform cluster operations instead of the default AWS credential provider chain.
	RoleARN string `json:"roleARN,omitempty" protobuf:"bytes,2,opt,name=roleARN"`
}

AWSAuthConfig is an AWS IAM authentication configuration

func (*AWSAuthConfig) DeepCopy added in v0.9.0

func (in *AWSAuthConfig) DeepCopy() *AWSAuthConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthConfig.

func (*AWSAuthConfig) DeepCopyInto added in v0.9.0

func (in *AWSAuthConfig) DeepCopyInto(out *AWSAuthConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AWSAuthConfig) Descriptor added in v0.9.0

func (*AWSAuthConfig) Descriptor() ([]byte, []int)

func (*AWSAuthConfig) Marshal added in v0.9.0

func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error)

func (*AWSAuthConfig) MarshalTo added in v0.9.0

func (m *AWSAuthConfig) MarshalTo(dAtA []byte) (int, error)

func (*AWSAuthConfig) ProtoMessage added in v0.9.0

func (*AWSAuthConfig) ProtoMessage()

func (*AWSAuthConfig) Reset added in v0.9.0

func (m *AWSAuthConfig) Reset()

func (*AWSAuthConfig) Size added in v0.9.0

func (m *AWSAuthConfig) Size() (n int)

func (*AWSAuthConfig) String added in v0.9.0

func (this *AWSAuthConfig) String() string

func (*AWSAuthConfig) Unmarshal added in v0.9.0

func (m *AWSAuthConfig) Unmarshal(dAtA []byte) error

func (*AWSAuthConfig) XXX_DiscardUnknown added in v0.9.0

func (m *AWSAuthConfig) XXX_DiscardUnknown()

func (*AWSAuthConfig) XXX_Marshal added in v0.9.0

func (m *AWSAuthConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AWSAuthConfig) XXX_Merge added in v0.9.0

func (dst *AWSAuthConfig) XXX_Merge(src proto.Message)

func (*AWSAuthConfig) XXX_Size added in v0.9.0

func (m *AWSAuthConfig) XXX_Size() int

func (*AWSAuthConfig) XXX_Unmarshal added in v0.9.0

func (m *AWSAuthConfig) XXX_Unmarshal(b []byte) error

type AppProject added in v0.6.0

type AppProject struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
	Spec              AppProjectSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
}

AppProject provides a logical grouping of applications, providing controls for: * where the apps may deploy to (cluster whitelist) * what may be deployed (repository whitelist, resource whitelist/blacklist) * who can access these applications (roles, OIDC group claims bindings) * and what they can do (RBAC policies) * automation access to these roles (JWT tokens) +genclient +genclient:noStatus +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*AppProject) DeepCopy added in v0.6.0

func (in *AppProject) DeepCopy() *AppProject

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppProject.

func (*AppProject) DeepCopyInto added in v0.6.0

func (in *AppProject) DeepCopyInto(out *AppProject)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AppProject) DeepCopyObject added in v0.6.0

func (in *AppProject) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AppProject) Descriptor added in v0.6.0

func (*AppProject) Descriptor() ([]byte, []int)

func (AppProject) IsDestinationPermitted added in v0.6.0

func (proj AppProject) IsDestinationPermitted(dst ApplicationDestination) bool

IsDestinationPermitted validates if the provided application's destination is one of the allowed destinations for the project

func (AppProject) IsResourcePermitted added in v0.9.0

func (proj AppProject) IsResourcePermitted(res metav1.GroupKind, namespaced bool) bool

IsResourcePermitted validates if the given resource group/kind is permitted to be deployed in the project

func (AppProject) IsSourcePermitted added in v0.6.0

func (proj AppProject) IsSourcePermitted(src ApplicationSource) bool

IsSourcePermitted validates if the provided application's source is a one of the allowed sources for the project.

func (*AppProject) Marshal added in v0.6.0

func (m *AppProject) Marshal() (dAtA []byte, err error)

func (*AppProject) MarshalTo added in v0.6.0

func (m *AppProject) MarshalTo(dAtA []byte) (int, error)

func (*AppProject) ProjectPoliciesString added in v0.8.0

func (proj *AppProject) ProjectPoliciesString() string

ProjectPoliciesString returns Casbin formated string of a project's policies for each role

func (*AppProject) ProtoMessage added in v0.6.0

func (*AppProject) ProtoMessage()

func (*AppProject) Reset added in v0.6.0

func (m *AppProject) Reset()

func (*AppProject) Size added in v0.6.0

func (m *AppProject) Size() (n int)

func (*AppProject) String added in v0.6.0

func (this *AppProject) String() string

func (*AppProject) Unmarshal added in v0.6.0

func (m *AppProject) Unmarshal(dAtA []byte) error

func (*AppProject) XXX_DiscardUnknown added in v0.9.0

func (m *AppProject) XXX_DiscardUnknown()

func (*AppProject) XXX_Marshal added in v0.9.0

func (m *AppProject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AppProject) XXX_Merge added in v0.9.0

func (dst *AppProject) XXX_Merge(src proto.Message)

func (*AppProject) XXX_Size added in v0.9.0

func (m *AppProject) XXX_Size() int

func (*AppProject) XXX_Unmarshal added in v0.9.0

func (m *AppProject) XXX_Unmarshal(b []byte) error

type AppProjectList added in v0.6.0

type AppProjectList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
	Items           []AppProject `json:"items" protobuf:"bytes,2,rep,name=items"`
}

AppProjectList is list of AppProject resources +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*AppProjectList) DeepCopy added in v0.6.0

func (in *AppProjectList) DeepCopy() *AppProjectList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppProjectList.

func (*AppProjectList) DeepCopyInto added in v0.6.0

func (in *AppProjectList) DeepCopyInto(out *AppProjectList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AppProjectList) DeepCopyObject added in v0.6.0

func (in *AppProjectList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AppProjectList) Descriptor added in v0.6.0

func (*AppProjectList) Descriptor() ([]byte, []int)

func (*AppProjectList) Marshal added in v0.6.0

func (m *AppProjectList) Marshal() (dAtA []byte, err error)

func (*AppProjectList) MarshalTo added in v0.6.0

func (m *AppProjectList) MarshalTo(dAtA []byte) (int, error)

func (*AppProjectList) ProtoMessage added in v0.6.0

func (*AppProjectList) ProtoMessage()

func (*AppProjectList) Reset added in v0.6.0

func (m *AppProjectList) Reset()

func (*AppProjectList) Size added in v0.6.0

func (m *AppProjectList) Size() (n int)

func (*AppProjectList) String added in v0.6.0

func (this *AppProjectList) String() string

func (*AppProjectList) Unmarshal added in v0.6.0

func (m *AppProjectList) Unmarshal(dAtA []byte) error

func (*AppProjectList) XXX_DiscardUnknown added in v0.9.0

func (m *AppProjectList) XXX_DiscardUnknown()

func (*AppProjectList) XXX_Marshal added in v0.9.0

func (m *AppProjectList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AppProjectList) XXX_Merge added in v0.9.0

func (dst *AppProjectList) XXX_Merge(src proto.Message)

func (*AppProjectList) XXX_Size added in v0.9.0

func (m *AppProjectList) XXX_Size() int

func (*AppProjectList) XXX_Unmarshal added in v0.9.0

func (m *AppProjectList) XXX_Unmarshal(b []byte) error

type AppProjectSpec added in v0.6.0

type AppProjectSpec struct {
	// SourceRepos contains list of git repository URLs which can be used for deployment
	SourceRepos []string `json:"sourceRepos,omitempty" protobuf:"bytes,1,name=sourceRepos"`
	// Destinations contains list of destinations available for deployment
	Destinations []ApplicationDestination `json:"destinations,omitempty" protobuf:"bytes,2,name=destination"`
	// Description contains optional project description
	Description string `json:"description,omitempty" protobuf:"bytes,3,opt,name=description"`
	// Roles are user defined RBAC roles associated with this project
	Roles []ProjectRole `json:"roles,omitempty" protobuf:"bytes,4,rep,name=roles"`
	// ClusterResourceWhitelist contains list of whitelisted cluster level resources
	ClusterResourceWhitelist []metav1.GroupKind `json:"clusterResourceWhitelist,omitempty" protobuf:"bytes,5,opt,name=clusterResourceWhitelist"`
	// NamespaceResourceBlacklist contains list of blacklisted namespace level resources
	NamespaceResourceBlacklist []metav1.GroupKind `json:"namespaceResourceBlacklist,omitempty" protobuf:"bytes,6,opt,name=namespaceResourceBlacklist"`
}

AppProjectSpec is the specification of an AppProject

func (*AppProjectSpec) DeepCopy added in v0.6.0

func (in *AppProjectSpec) DeepCopy() *AppProjectSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppProjectSpec.

func (*AppProjectSpec) DeepCopyInto added in v0.6.0

func (in *AppProjectSpec) DeepCopyInto(out *AppProjectSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AppProjectSpec) Descriptor added in v0.6.0

func (*AppProjectSpec) Descriptor() ([]byte, []int)

func (AppProjectSpec) DestinationClusters added in v1.0.0

func (d AppProjectSpec) DestinationClusters() []string

func (*AppProjectSpec) Marshal added in v0.6.0

func (m *AppProjectSpec) Marshal() (dAtA []byte, err error)

func (*AppProjectSpec) MarshalTo added in v0.6.0

func (m *AppProjectSpec) MarshalTo(dAtA []byte) (int, error)

func (*AppProjectSpec) ProtoMessage added in v0.6.0

func (*AppProjectSpec) ProtoMessage()

func (*AppProjectSpec) Reset added in v0.6.0

func (m *AppProjectSpec) Reset()

func (*AppProjectSpec) Size added in v0.6.0

func (m *AppProjectSpec) Size() (n int)

func (*AppProjectSpec) String added in v0.6.0

func (this *AppProjectSpec) String() string

func (*AppProjectSpec) Unmarshal added in v0.6.0

func (m *AppProjectSpec) Unmarshal(dAtA []byte) error

func (*AppProjectSpec) XXX_DiscardUnknown added in v0.9.0

func (m *AppProjectSpec) XXX_DiscardUnknown()

func (*AppProjectSpec) XXX_Marshal added in v0.9.0

func (m *AppProjectSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AppProjectSpec) XXX_Merge added in v0.9.0

func (dst *AppProjectSpec) XXX_Merge(src proto.Message)

func (*AppProjectSpec) XXX_Size added in v0.9.0

func (m *AppProjectSpec) XXX_Size() int

func (*AppProjectSpec) XXX_Unmarshal added in v0.9.0

func (m *AppProjectSpec) XXX_Unmarshal(b []byte) error

type Application

type Application struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
	Spec              ApplicationSpec   `json:"spec" protobuf:"bytes,2,opt,name=spec"`
	Status            ApplicationStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
	Operation         *Operation        `json:"operation,omitempty" protobuf:"bytes,4,opt,name=operation"`
}

Application is a definition of Application resource. +genclient +genclient:noStatus +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*Application) CascadedDeletion added in v0.4.0

func (app *Application) CascadedDeletion() bool

CascadedDeletion indicates if resources finalizer is set and controller should delete app resources before deleting app

func (*Application) DeepCopy

func (in *Application) DeepCopy() *Application

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application.

func (*Application) DeepCopyInto

func (in *Application) DeepCopyInto(out *Application)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Application) DeepCopyObject

func (in *Application) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Application) Descriptor

func (*Application) Descriptor() ([]byte, []int)

func (*Application) GetMetadata

func (a *Application) GetMetadata() *objectMeta

func (*Application) IsRefreshRequested added in v0.11.0

func (app *Application) IsRefreshRequested() (RefreshType, bool)

func (*Application) Marshal

func (m *Application) Marshal() (dAtA []byte, err error)

func (*Application) MarshalTo

func (m *Application) MarshalTo(dAtA []byte) (int, error)

func (*Application) ProtoMessage

func (*Application) ProtoMessage()

func (*Application) Reset

func (m *Application) Reset()

func (*Application) SetCascadedDeletion added in v0.4.0

func (app *Application) SetCascadedDeletion(prune bool)

SetCascadedDeletion sets or remove resources finalizer

func (*Application) Size

func (m *Application) Size() (n int)

func (*Application) String

func (this *Application) String() string

func (*Application) Unmarshal

func (m *Application) Unmarshal(dAtA []byte) error

func (*Application) XXX_DiscardUnknown added in v0.9.0

func (m *Application) XXX_DiscardUnknown()

func (*Application) XXX_Marshal added in v0.9.0

func (m *Application) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Application) XXX_Merge added in v0.9.0

func (dst *Application) XXX_Merge(src proto.Message)

func (*Application) XXX_Size added in v0.9.0

func (m *Application) XXX_Size() int

func (*Application) XXX_Unmarshal added in v0.9.0

func (m *Application) XXX_Unmarshal(b []byte) error

type ApplicationCondition added in v0.4.0

type ApplicationCondition struct {
	// Type is an application condition type
	Type ApplicationConditionType `json:"type" protobuf:"bytes,1,opt,name=type"`
	// Message contains human-readable message indicating details about condition
	Message string `json:"message" protobuf:"bytes,2,opt,name=message"`
}

ApplicationCondition contains details about current application condition

func (*ApplicationCondition) DeepCopy added in v0.4.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCondition.

func (*ApplicationCondition) DeepCopyInto added in v0.4.0

func (in *ApplicationCondition) DeepCopyInto(out *ApplicationCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationCondition) Descriptor added in v0.4.0

func (*ApplicationCondition) Descriptor() ([]byte, []int)

func (*ApplicationCondition) IsError added in v0.6.0

func (condition *ApplicationCondition) IsError() bool

IsError returns true if condition is error condition

func (*ApplicationCondition) Marshal added in v0.4.0

func (m *ApplicationCondition) Marshal() (dAtA []byte, err error)

func (*ApplicationCondition) MarshalTo added in v0.4.0

func (m *ApplicationCondition) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationCondition) ProtoMessage added in v0.4.0

func (*ApplicationCondition) ProtoMessage()

func (*ApplicationCondition) Reset added in v0.4.0

func (m *ApplicationCondition) Reset()

func (*ApplicationCondition) Size added in v0.4.0

func (m *ApplicationCondition) Size() (n int)

func (*ApplicationCondition) String added in v0.4.0

func (this *ApplicationCondition) String() string

func (*ApplicationCondition) Unmarshal added in v0.4.0

func (m *ApplicationCondition) Unmarshal(dAtA []byte) error

func (*ApplicationCondition) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationCondition) XXX_DiscardUnknown()

func (*ApplicationCondition) XXX_Marshal added in v0.9.0

func (m *ApplicationCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationCondition) XXX_Merge added in v0.9.0

func (dst *ApplicationCondition) XXX_Merge(src proto.Message)

func (*ApplicationCondition) XXX_Size added in v0.9.0

func (m *ApplicationCondition) XXX_Size() int

func (*ApplicationCondition) XXX_Unmarshal added in v0.9.0

func (m *ApplicationCondition) XXX_Unmarshal(b []byte) error

type ApplicationConditionType added in v0.4.0

type ApplicationConditionType = string

ApplicationConditionType represents type of application condition. Type name has following convention: prefix "Error" means error condition prefix "Warning" means warning condition prefix "Info" means informational condition

type ApplicationDestination

type ApplicationDestination struct {
	// Server overrides the environment server value in the ksonnet app.yaml
	Server string `json:"server,omitempty" protobuf:"bytes,1,opt,name=server"`
	// Namespace overrides the environment namespace value in the ksonnet app.yaml
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`
}

ApplicationDestination contains deployment destination information

func (*ApplicationDestination) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationDestination.

func (*ApplicationDestination) DeepCopyInto

func (in *ApplicationDestination) DeepCopyInto(out *ApplicationDestination)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationDestination) Descriptor

func (*ApplicationDestination) Descriptor() ([]byte, []int)

func (ApplicationDestination) Equals added in v0.11.0

Equals compares two instances of ApplicationDestination and return true if instances are equal.

func (*ApplicationDestination) Marshal

func (m *ApplicationDestination) Marshal() (dAtA []byte, err error)

func (*ApplicationDestination) MarshalTo

func (m *ApplicationDestination) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationDestination) ProtoMessage

func (*ApplicationDestination) ProtoMessage()

func (*ApplicationDestination) Reset

func (m *ApplicationDestination) Reset()

func (*ApplicationDestination) Size

func (m *ApplicationDestination) Size() (n int)

func (*ApplicationDestination) String

func (this *ApplicationDestination) String() string

func (*ApplicationDestination) Unmarshal

func (m *ApplicationDestination) Unmarshal(dAtA []byte) error

func (*ApplicationDestination) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationDestination) XXX_DiscardUnknown()

func (*ApplicationDestination) XXX_Marshal added in v0.9.0

func (m *ApplicationDestination) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationDestination) XXX_Merge added in v0.9.0

func (dst *ApplicationDestination) XXX_Merge(src proto.Message)

func (*ApplicationDestination) XXX_Size added in v0.9.0

func (m *ApplicationDestination) XXX_Size() int

func (*ApplicationDestination) XXX_Unmarshal added in v0.9.0

func (m *ApplicationDestination) XXX_Unmarshal(b []byte) error

type ApplicationList

type ApplicationList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
	Items           []Application `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ApplicationList is list of Application resources +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

func (*ApplicationList) DeepCopy

func (in *ApplicationList) DeepCopy() *ApplicationList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationList.

func (*ApplicationList) DeepCopyInto

func (in *ApplicationList) DeepCopyInto(out *ApplicationList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationList) DeepCopyObject

func (in *ApplicationList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ApplicationList) Descriptor

func (*ApplicationList) Descriptor() ([]byte, []int)

func (*ApplicationList) Marshal

func (m *ApplicationList) Marshal() (dAtA []byte, err error)

func (*ApplicationList) MarshalTo

func (m *ApplicationList) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationList) ProtoMessage

func (*ApplicationList) ProtoMessage()

func (*ApplicationList) Reset

func (m *ApplicationList) Reset()

func (*ApplicationList) Size

func (m *ApplicationList) Size() (n int)

func (*ApplicationList) String

func (this *ApplicationList) String() string

func (*ApplicationList) Unmarshal

func (m *ApplicationList) Unmarshal(dAtA []byte) error

func (*ApplicationList) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationList) XXX_DiscardUnknown()

func (*ApplicationList) XXX_Marshal added in v0.9.0

func (m *ApplicationList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationList) XXX_Merge added in v0.9.0

func (dst *ApplicationList) XXX_Merge(src proto.Message)

func (*ApplicationList) XXX_Size added in v0.9.0

func (m *ApplicationList) XXX_Size() int

func (*ApplicationList) XXX_Unmarshal added in v0.9.0

func (m *ApplicationList) XXX_Unmarshal(b []byte) error

type ApplicationSource

type ApplicationSource struct {
	// RepoURL is the git repository URL of the application manifests
	RepoURL string `json:"repoURL" protobuf:"bytes,1,opt,name=repoURL"`
	// Path is a directory path within the repository containing a
	Path string `json:"path" protobuf:"bytes,2,opt,name=path"`
	// Environment is a ksonnet application environment name
	// TargetRevision defines the commit, tag, or branch in which to sync the application to.
	// If omitted, will sync to HEAD
	TargetRevision string `json:"targetRevision,omitempty" protobuf:"bytes,4,opt,name=targetRevision"`
	// Helm holds helm specific options
	Helm *ApplicationSourceHelm `json:"helm,omitempty" protobuf:"bytes,7,opt,name=helm"`
	// Kustomize holds kustomize specific options
	Kustomize *ApplicationSourceKustomize `json:"kustomize,omitempty" protobuf:"bytes,8,opt,name=kustomize"`
	// Ksonnet holds ksonnet specific options
	Ksonnet *ApplicationSourceKsonnet `json:"ksonnet,omitempty" protobuf:"bytes,9,opt,name=ksonnet"`
	// Directory holds path/directory specific options
	Directory *ApplicationSourceDirectory `json:"directory,omitempty" protobuf:"bytes,10,opt,name=directory"`
	// ConfigManagementPlugin holds config management plugin specific options
	Plugin *ApplicationSourcePlugin `json:"plugin,omitempty" protobuf:"bytes,11,opt,name=plugin"`
}

ApplicationSource contains information about github repository, path within repository and target application environment.

func (*ApplicationSource) DeepCopy

func (in *ApplicationSource) DeepCopy() *ApplicationSource

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSource.

func (*ApplicationSource) DeepCopyInto

func (in *ApplicationSource) DeepCopyInto(out *ApplicationSource)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSource) Descriptor

func (*ApplicationSource) Descriptor() ([]byte, []int)

func (*ApplicationSource) Equals

func (source *ApplicationSource) Equals(other ApplicationSource) bool

Equals compares two instances of ApplicationSource and return true if instances are equal.

func (*ApplicationSource) ExplicitType added in v0.12.0

func (source *ApplicationSource) ExplicitType() (*ApplicationSourceType, error)

func (ApplicationSource) IsZero added in v0.12.0

func (a ApplicationSource) IsZero() bool

func (*ApplicationSource) Marshal

func (m *ApplicationSource) Marshal() (dAtA []byte, err error)

func (*ApplicationSource) MarshalTo

func (m *ApplicationSource) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSource) ProtoMessage

func (*ApplicationSource) ProtoMessage()

func (*ApplicationSource) Reset

func (m *ApplicationSource) Reset()

func (*ApplicationSource) Size

func (m *ApplicationSource) Size() (n int)

func (*ApplicationSource) String

func (this *ApplicationSource) String() string

func (*ApplicationSource) Unmarshal

func (m *ApplicationSource) Unmarshal(dAtA []byte) error

func (*ApplicationSource) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationSource) XXX_DiscardUnknown()

func (*ApplicationSource) XXX_Marshal added in v0.9.0

func (m *ApplicationSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSource) XXX_Merge added in v0.9.0

func (dst *ApplicationSource) XXX_Merge(src proto.Message)

func (*ApplicationSource) XXX_Size added in v0.9.0

func (m *ApplicationSource) XXX_Size() int

func (*ApplicationSource) XXX_Unmarshal added in v0.9.0

func (m *ApplicationSource) XXX_Unmarshal(b []byte) error

type ApplicationSourceDirectory added in v0.12.0

type ApplicationSourceDirectory struct {
	Recurse bool                     `json:"recurse,omitempty" protobuf:"bytes,1,opt,name=recurse"`
	Jsonnet ApplicationSourceJsonnet `json:"jsonnet,omitempty" protobuf:"bytes,2,opt,name=jsonnet"`
}

func (*ApplicationSourceDirectory) DeepCopy added in v0.12.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourceDirectory.

func (*ApplicationSourceDirectory) DeepCopyInto added in v0.12.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourceDirectory) Descriptor added in v0.12.0

func (*ApplicationSourceDirectory) Descriptor() ([]byte, []int)

func (*ApplicationSourceDirectory) IsZero added in v0.12.0

func (d *ApplicationSourceDirectory) IsZero() bool

func (*ApplicationSourceDirectory) Marshal added in v0.12.0

func (m *ApplicationSourceDirectory) Marshal() (dAtA []byte, err error)

func (*ApplicationSourceDirectory) MarshalTo added in v0.12.0

func (m *ApplicationSourceDirectory) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourceDirectory) ProtoMessage added in v0.12.0

func (*ApplicationSourceDirectory) ProtoMessage()

func (*ApplicationSourceDirectory) Reset added in v0.12.0

func (m *ApplicationSourceDirectory) Reset()

func (*ApplicationSourceDirectory) Size added in v0.12.0

func (m *ApplicationSourceDirectory) Size() (n int)

func (*ApplicationSourceDirectory) String added in v0.12.0

func (this *ApplicationSourceDirectory) String() string

func (*ApplicationSourceDirectory) Unmarshal added in v0.12.0

func (m *ApplicationSourceDirectory) Unmarshal(dAtA []byte) error

func (*ApplicationSourceDirectory) XXX_DiscardUnknown added in v0.12.0

func (m *ApplicationSourceDirectory) XXX_DiscardUnknown()

func (*ApplicationSourceDirectory) XXX_Marshal added in v0.12.0

func (m *ApplicationSourceDirectory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourceDirectory) XXX_Merge added in v0.12.0

func (dst *ApplicationSourceDirectory) XXX_Merge(src proto.Message)

func (*ApplicationSourceDirectory) XXX_Size added in v0.12.0

func (m *ApplicationSourceDirectory) XXX_Size() int

func (*ApplicationSourceDirectory) XXX_Unmarshal added in v0.12.0

func (m *ApplicationSourceDirectory) XXX_Unmarshal(b []byte) error

type ApplicationSourceHelm added in v0.11.0

type ApplicationSourceHelm struct {
	// ValuesFiles is a list of Helm value files to use when generating a template
	ValueFiles []string `json:"valueFiles,omitempty" protobuf:"bytes,1,opt,name=valueFiles"`
	// Parameters are parameters to the helm template
	Parameters []HelmParameter `json:"parameters,omitempty" protobuf:"bytes,2,opt,name=parameters"`
	// The Helm release name. If omitted it will use the application name
	ReleaseName string `json:"releaseName,omitempty" protobuf:"bytes,3,opt,name=releaseName"`
}

ApplicationSourceHelm holds helm specific options

func (*ApplicationSourceHelm) DeepCopy added in v0.11.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourceHelm.

func (*ApplicationSourceHelm) DeepCopyInto added in v0.11.0

func (in *ApplicationSourceHelm) DeepCopyInto(out *ApplicationSourceHelm)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourceHelm) Descriptor added in v0.11.0

func (*ApplicationSourceHelm) Descriptor() ([]byte, []int)

func (*ApplicationSourceHelm) IsZero added in v0.11.1

func (h *ApplicationSourceHelm) IsZero() bool

func (*ApplicationSourceHelm) Marshal added in v0.11.0

func (m *ApplicationSourceHelm) Marshal() (dAtA []byte, err error)

func (*ApplicationSourceHelm) MarshalTo added in v0.11.0

func (m *ApplicationSourceHelm) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourceHelm) ProtoMessage added in v0.11.0

func (*ApplicationSourceHelm) ProtoMessage()

func (*ApplicationSourceHelm) Reset added in v0.11.0

func (m *ApplicationSourceHelm) Reset()

func (*ApplicationSourceHelm) Size added in v0.11.0

func (m *ApplicationSourceHelm) Size() (n int)

func (*ApplicationSourceHelm) String added in v0.11.0

func (this *ApplicationSourceHelm) String() string

func (*ApplicationSourceHelm) Unmarshal added in v0.11.0

func (m *ApplicationSourceHelm) Unmarshal(dAtA []byte) error

func (*ApplicationSourceHelm) XXX_DiscardUnknown added in v0.11.0

func (m *ApplicationSourceHelm) XXX_DiscardUnknown()

func (*ApplicationSourceHelm) XXX_Marshal added in v0.11.0

func (m *ApplicationSourceHelm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourceHelm) XXX_Merge added in v0.11.0

func (dst *ApplicationSourceHelm) XXX_Merge(src proto.Message)

func (*ApplicationSourceHelm) XXX_Size added in v0.11.0

func (m *ApplicationSourceHelm) XXX_Size() int

func (*ApplicationSourceHelm) XXX_Unmarshal added in v0.11.0

func (m *ApplicationSourceHelm) XXX_Unmarshal(b []byte) error

type ApplicationSourceJsonnet added in v0.12.0

type ApplicationSourceJsonnet struct {
	// ExtVars is a list of Jsonnet External Variables
	ExtVars []JsonnetVar `json:"extVars,omitempty" protobuf:"bytes,1,opt,name=extVars"`
	// TLAS is a list of Jsonnet Top-level Arguments
	TLAs []JsonnetVar `json:"tlas,omitempty" protobuf:"bytes,2,opt,name=tlas"`
}

ApplicationSourceJsonnet holds jsonnet specific options

func (*ApplicationSourceJsonnet) DeepCopy added in v0.12.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourceJsonnet.

func (*ApplicationSourceJsonnet) DeepCopyInto added in v0.12.0

func (in *ApplicationSourceJsonnet) DeepCopyInto(out *ApplicationSourceJsonnet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourceJsonnet) Descriptor added in v0.12.0

func (*ApplicationSourceJsonnet) Descriptor() ([]byte, []int)

func (*ApplicationSourceJsonnet) IsZero added in v0.12.0

func (j *ApplicationSourceJsonnet) IsZero() bool

func (*ApplicationSourceJsonnet) Marshal added in v0.12.0

func (m *ApplicationSourceJsonnet) Marshal() (dAtA []byte, err error)

func (*ApplicationSourceJsonnet) MarshalTo added in v0.12.0

func (m *ApplicationSourceJsonnet) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourceJsonnet) ProtoMessage added in v0.12.0

func (*ApplicationSourceJsonnet) ProtoMessage()

func (*ApplicationSourceJsonnet) Reset added in v0.12.0

func (m *ApplicationSourceJsonnet) Reset()

func (*ApplicationSourceJsonnet) Size added in v0.12.0

func (m *ApplicationSourceJsonnet) Size() (n int)

func (*ApplicationSourceJsonnet) String added in v0.12.0

func (this *ApplicationSourceJsonnet) String() string

func (*ApplicationSourceJsonnet) Unmarshal added in v0.12.0

func (m *ApplicationSourceJsonnet) Unmarshal(dAtA []byte) error

func (*ApplicationSourceJsonnet) XXX_DiscardUnknown added in v0.12.0

func (m *ApplicationSourceJsonnet) XXX_DiscardUnknown()

func (*ApplicationSourceJsonnet) XXX_Marshal added in v0.12.0

func (m *ApplicationSourceJsonnet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourceJsonnet) XXX_Merge added in v0.12.0

func (dst *ApplicationSourceJsonnet) XXX_Merge(src proto.Message)

func (*ApplicationSourceJsonnet) XXX_Size added in v0.12.0

func (m *ApplicationSourceJsonnet) XXX_Size() int

func (*ApplicationSourceJsonnet) XXX_Unmarshal added in v0.12.0

func (m *ApplicationSourceJsonnet) XXX_Unmarshal(b []byte) error

type ApplicationSourceKsonnet added in v0.11.0

type ApplicationSourceKsonnet struct {
	// Environment is a ksonnet application environment name
	Environment string `json:"environment,omitempty" protobuf:"bytes,1,opt,name=environment"`
	// Parameters are a list of ksonnet component parameter override values
	Parameters []KsonnetParameter `json:"parameters,omitempty" protobuf:"bytes,2,opt,name=parameters"`
}

ApplicationSourceKsonnet holds ksonnet specific options

func (*ApplicationSourceKsonnet) DeepCopy added in v0.11.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourceKsonnet.

func (*ApplicationSourceKsonnet) DeepCopyInto added in v0.11.0

func (in *ApplicationSourceKsonnet) DeepCopyInto(out *ApplicationSourceKsonnet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourceKsonnet) Descriptor added in v0.11.0

func (*ApplicationSourceKsonnet) Descriptor() ([]byte, []int)

func (*ApplicationSourceKsonnet) IsZero added in v0.11.1

func (k *ApplicationSourceKsonnet) IsZero() bool

func (*ApplicationSourceKsonnet) Marshal added in v0.11.0

func (m *ApplicationSourceKsonnet) Marshal() (dAtA []byte, err error)

func (*ApplicationSourceKsonnet) MarshalTo added in v0.11.0

func (m *ApplicationSourceKsonnet) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourceKsonnet) ProtoMessage added in v0.11.0

func (*ApplicationSourceKsonnet) ProtoMessage()

func (*ApplicationSourceKsonnet) Reset added in v0.11.0

func (m *ApplicationSourceKsonnet) Reset()

func (*ApplicationSourceKsonnet) Size added in v0.11.0

func (m *ApplicationSourceKsonnet) Size() (n int)

func (*ApplicationSourceKsonnet) String added in v0.11.0

func (this *ApplicationSourceKsonnet) String() string

func (*ApplicationSourceKsonnet) Unmarshal added in v0.11.0

func (m *ApplicationSourceKsonnet) Unmarshal(dAtA []byte) error

func (*ApplicationSourceKsonnet) XXX_DiscardUnknown added in v0.11.0

func (m *ApplicationSourceKsonnet) XXX_DiscardUnknown()

func (*ApplicationSourceKsonnet) XXX_Marshal added in v0.11.0

func (m *ApplicationSourceKsonnet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourceKsonnet) XXX_Merge added in v0.11.0

func (dst *ApplicationSourceKsonnet) XXX_Merge(src proto.Message)

func (*ApplicationSourceKsonnet) XXX_Size added in v0.11.0

func (m *ApplicationSourceKsonnet) XXX_Size() int

func (*ApplicationSourceKsonnet) XXX_Unmarshal added in v0.11.0

func (m *ApplicationSourceKsonnet) XXX_Unmarshal(b []byte) error

type ApplicationSourceKustomize added in v0.11.0

type ApplicationSourceKustomize struct {
	// NamePrefix is a prefix appended to resources for kustomize apps
	NamePrefix string `json:"namePrefix,omitempty" protobuf:"bytes,1,opt,name=namePrefix"`
	// ImageTags are kustomize 1.0 image tag overrides
	ImageTags []KustomizeImageTag `json:"imageTags,omitempty" protobuf:"bytes,2,opt,name=imageTags"`
	// Images are kustomize 2.0 image overrides
	Images []string `json:"images,omitempty" protobuf:"bytes,3,opt,name=images"`
	// CommonLabels adds additional kustomize commonLabels
	CommonLabels map[string]string `json:"commonLabels,omitempty" protobuf:"bytes,4,opt,name=commonLabels"`
}

ApplicationSourceKustomize holds kustomize specific options

func (*ApplicationSourceKustomize) DeepCopy added in v0.11.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourceKustomize.

func (*ApplicationSourceKustomize) DeepCopyInto added in v0.11.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourceKustomize) Descriptor added in v0.11.0

func (*ApplicationSourceKustomize) Descriptor() ([]byte, []int)

func (*ApplicationSourceKustomize) IsZero added in v0.11.1

func (k *ApplicationSourceKustomize) IsZero() bool

func (*ApplicationSourceKustomize) Marshal added in v0.11.0

func (m *ApplicationSourceKustomize) Marshal() (dAtA []byte, err error)

func (*ApplicationSourceKustomize) MarshalTo added in v0.11.0

func (m *ApplicationSourceKustomize) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourceKustomize) ProtoMessage added in v0.11.0

func (*ApplicationSourceKustomize) ProtoMessage()

func (*ApplicationSourceKustomize) Reset added in v0.11.0

func (m *ApplicationSourceKustomize) Reset()

func (*ApplicationSourceKustomize) Size added in v0.11.0

func (m *ApplicationSourceKustomize) Size() (n int)

func (*ApplicationSourceKustomize) String added in v0.11.0

func (this *ApplicationSourceKustomize) String() string

func (*ApplicationSourceKustomize) Unmarshal added in v0.11.0

func (m *ApplicationSourceKustomize) Unmarshal(dAtA []byte) error

func (*ApplicationSourceKustomize) XXX_DiscardUnknown added in v0.11.0

func (m *ApplicationSourceKustomize) XXX_DiscardUnknown()

func (*ApplicationSourceKustomize) XXX_Marshal added in v0.11.0

func (m *ApplicationSourceKustomize) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourceKustomize) XXX_Merge added in v0.11.0

func (dst *ApplicationSourceKustomize) XXX_Merge(src proto.Message)

func (*ApplicationSourceKustomize) XXX_Size added in v0.11.0

func (m *ApplicationSourceKustomize) XXX_Size() int

func (*ApplicationSourceKustomize) XXX_Unmarshal added in v0.11.0

func (m *ApplicationSourceKustomize) XXX_Unmarshal(b []byte) error

type ApplicationSourcePlugin added in v0.12.0

type ApplicationSourcePlugin struct {
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
}

ApplicationSourcePlugin holds config management plugin specific options

func (*ApplicationSourcePlugin) DeepCopy added in v0.12.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSourcePlugin.

func (*ApplicationSourcePlugin) DeepCopyInto added in v0.12.0

func (in *ApplicationSourcePlugin) DeepCopyInto(out *ApplicationSourcePlugin)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSourcePlugin) Descriptor added in v0.12.0

func (*ApplicationSourcePlugin) Descriptor() ([]byte, []int)

func (*ApplicationSourcePlugin) IsZero added in v0.12.0

func (c *ApplicationSourcePlugin) IsZero() bool

func (*ApplicationSourcePlugin) Marshal added in v0.12.0

func (m *ApplicationSourcePlugin) Marshal() (dAtA []byte, err error)

func (*ApplicationSourcePlugin) MarshalTo added in v0.12.0

func (m *ApplicationSourcePlugin) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSourcePlugin) ProtoMessage added in v0.12.0

func (*ApplicationSourcePlugin) ProtoMessage()

func (*ApplicationSourcePlugin) Reset added in v0.12.0

func (m *ApplicationSourcePlugin) Reset()

func (*ApplicationSourcePlugin) Size added in v0.12.0

func (m *ApplicationSourcePlugin) Size() (n int)

func (*ApplicationSourcePlugin) String added in v0.12.0

func (this *ApplicationSourcePlugin) String() string

func (*ApplicationSourcePlugin) Unmarshal added in v0.12.0

func (m *ApplicationSourcePlugin) Unmarshal(dAtA []byte) error

func (*ApplicationSourcePlugin) XXX_DiscardUnknown added in v0.12.0

func (m *ApplicationSourcePlugin) XXX_DiscardUnknown()

func (*ApplicationSourcePlugin) XXX_Marshal added in v0.12.0

func (m *ApplicationSourcePlugin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSourcePlugin) XXX_Merge added in v0.12.0

func (dst *ApplicationSourcePlugin) XXX_Merge(src proto.Message)

func (*ApplicationSourcePlugin) XXX_Size added in v0.12.0

func (m *ApplicationSourcePlugin) XXX_Size() int

func (*ApplicationSourcePlugin) XXX_Unmarshal added in v0.12.0

func (m *ApplicationSourcePlugin) XXX_Unmarshal(b []byte) error

type ApplicationSourceType added in v0.11.0

type ApplicationSourceType string
const (
	ApplicationSourceTypeHelm      ApplicationSourceType = "Helm"
	ApplicationSourceTypeKustomize ApplicationSourceType = "Kustomize"
	ApplicationSourceTypeKsonnet   ApplicationSourceType = "Ksonnet"
	ApplicationSourceTypeDirectory ApplicationSourceType = "Directory"
	ApplicationSourceTypePlugin    ApplicationSourceType = "Plugin"
)

type ApplicationSpec

type ApplicationSpec struct {
	// Source is a reference to the location ksonnet application definition
	Source ApplicationSource `json:"source" protobuf:"bytes,1,opt,name=source"`
	// Destination overrides the kubernetes server and namespace defined in the environment ksonnet app.yaml
	Destination ApplicationDestination `json:"destination" protobuf:"bytes,2,name=destination"`
	// Project is a application project name. Empty name means that application belongs to 'default' project.
	Project string `json:"project" protobuf:"bytes,3,name=project"`
	// SyncPolicy controls when a sync will be performed
	SyncPolicy *SyncPolicy `json:"syncPolicy,omitempty" protobuf:"bytes,4,name=syncPolicy"`
	// IgnoreDifferences controls resources fields which should be ignored during comparison
	IgnoreDifferences []ResourceIgnoreDifferences `json:"ignoreDifferences,omitempty" protobuf:"bytes,5,name=ignoreDifferences"`
	// Infos contains a list of useful information (URLs, email addresses, and plain text) that relates to the application
	Info []Info `json:"info,omitempty" protobuf:"bytes,6,name=info"`
}

ApplicationSpec represents desired application state. Contains link to repository with application definition and additional parameters link definition revision.

func (*ApplicationSpec) DeepCopy

func (in *ApplicationSpec) DeepCopy() *ApplicationSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSpec.

func (*ApplicationSpec) DeepCopyInto

func (in *ApplicationSpec) DeepCopyInto(out *ApplicationSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSpec) Descriptor

func (*ApplicationSpec) Descriptor() ([]byte, []int)

func (ApplicationSpec) GetProject added in v0.6.0

func (spec ApplicationSpec) GetProject() string

GetProject returns the application's project. This is preferred over spec.Project which may be empty

func (*ApplicationSpec) Marshal

func (m *ApplicationSpec) Marshal() (dAtA []byte, err error)

func (*ApplicationSpec) MarshalTo

func (m *ApplicationSpec) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSpec) ProtoMessage

func (*ApplicationSpec) ProtoMessage()

func (*ApplicationSpec) Reset

func (m *ApplicationSpec) Reset()

func (*ApplicationSpec) Size

func (m *ApplicationSpec) Size() (n int)

func (*ApplicationSpec) String

func (this *ApplicationSpec) String() string

func (*ApplicationSpec) Unmarshal

func (m *ApplicationSpec) Unmarshal(dAtA []byte) error

func (*ApplicationSpec) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationSpec) XXX_DiscardUnknown()

func (*ApplicationSpec) XXX_Marshal added in v0.9.0

func (m *ApplicationSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSpec) XXX_Merge added in v0.9.0

func (dst *ApplicationSpec) XXX_Merge(src proto.Message)

func (*ApplicationSpec) XXX_Size added in v0.9.0

func (m *ApplicationSpec) XXX_Size() int

func (*ApplicationSpec) XXX_Unmarshal added in v0.9.0

func (m *ApplicationSpec) XXX_Unmarshal(b []byte) error

type ApplicationStatus

type ApplicationStatus struct {
	Resources      []ResourceStatus       `json:"resources,omitempty" protobuf:"bytes,1,opt,name=resources"`
	Sync           SyncStatus             `json:"sync,omitempty" protobuf:"bytes,2,opt,name=sync"`
	Health         HealthStatus           `json:"health,omitempty" protobuf:"bytes,3,opt,name=health"`
	History        []RevisionHistory      `json:"history,omitempty" protobuf:"bytes,4,opt,name=history"`
	Conditions     []ApplicationCondition `json:"conditions,omitempty" protobuf:"bytes,5,opt,name=conditions"`
	ReconciledAt   metav1.Time            `json:"reconciledAt,omitempty" protobuf:"bytes,6,opt,name=reconciledAt"`
	OperationState *OperationState        `json:"operationState,omitempty" protobuf:"bytes,7,opt,name=operationState"`
	ObservedAt     metav1.Time            `json:"observedAt,omitempty" protobuf:"bytes,8,opt,name=observedAt"`
	SourceType     ApplicationSourceType  `json:"sourceType,omitempty" protobuf:"bytes,9,opt,name=sourceType"`
	Summary        ApplicationSummary     `json:"summary,omitempty" protobuf:"bytes,10,opt,name=summary"`
}

ApplicationStatus contains information about application sync, health status

func (*ApplicationStatus) DeepCopy

func (in *ApplicationStatus) DeepCopy() *ApplicationStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationStatus.

func (*ApplicationStatus) DeepCopyInto

func (in *ApplicationStatus) DeepCopyInto(out *ApplicationStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationStatus) Descriptor

func (*ApplicationStatus) Descriptor() ([]byte, []int)

func (*ApplicationStatus) GetErrorConditions added in v0.6.0

func (status *ApplicationStatus) GetErrorConditions() []ApplicationCondition

GetErrorConditions returns list of application error conditions

func (*ApplicationStatus) Marshal

func (m *ApplicationStatus) Marshal() (dAtA []byte, err error)

func (*ApplicationStatus) MarshalTo

func (m *ApplicationStatus) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationStatus) ProtoMessage

func (*ApplicationStatus) ProtoMessage()

func (*ApplicationStatus) Reset

func (m *ApplicationStatus) Reset()

func (*ApplicationStatus) Size

func (m *ApplicationStatus) Size() (n int)

func (*ApplicationStatus) String

func (this *ApplicationStatus) String() string

func (*ApplicationStatus) Unmarshal

func (m *ApplicationStatus) Unmarshal(dAtA []byte) error

func (*ApplicationStatus) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationStatus) XXX_DiscardUnknown()

func (*ApplicationStatus) XXX_Marshal added in v0.9.0

func (m *ApplicationStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationStatus) XXX_Merge added in v0.9.0

func (dst *ApplicationStatus) XXX_Merge(src proto.Message)

func (*ApplicationStatus) XXX_Size added in v0.9.0

func (m *ApplicationStatus) XXX_Size() int

func (*ApplicationStatus) XXX_Unmarshal added in v0.9.0

func (m *ApplicationStatus) XXX_Unmarshal(b []byte) error

type ApplicationSummary added in v1.0.0

type ApplicationSummary struct {
	// ExternalURLs holds all external URLs of application child resources.
	ExternalURLs []string `json:"externalURLs,omitempty" protobuf:"bytes,1,opt,name=externalURLs"`
	// Images holds all images of application child resources.
	Images []string `json:"images,omitempty" protobuf:"bytes,2,opt,name=images"`
}

func (*ApplicationSummary) DeepCopy added in v1.0.0

func (in *ApplicationSummary) DeepCopy() *ApplicationSummary

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSummary.

func (*ApplicationSummary) DeepCopyInto added in v1.0.0

func (in *ApplicationSummary) DeepCopyInto(out *ApplicationSummary)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationSummary) Descriptor added in v1.0.0

func (*ApplicationSummary) Descriptor() ([]byte, []int)

func (*ApplicationSummary) Marshal added in v1.0.0

func (m *ApplicationSummary) Marshal() (dAtA []byte, err error)

func (*ApplicationSummary) MarshalTo added in v1.0.0

func (m *ApplicationSummary) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationSummary) ProtoMessage added in v1.0.0

func (*ApplicationSummary) ProtoMessage()

func (*ApplicationSummary) Reset added in v1.0.0

func (m *ApplicationSummary) Reset()

func (*ApplicationSummary) Size added in v1.0.0

func (m *ApplicationSummary) Size() (n int)

func (*ApplicationSummary) String added in v1.0.0

func (this *ApplicationSummary) String() string

func (*ApplicationSummary) Unmarshal added in v1.0.0

func (m *ApplicationSummary) Unmarshal(dAtA []byte) error

func (*ApplicationSummary) XXX_DiscardUnknown added in v1.0.0

func (m *ApplicationSummary) XXX_DiscardUnknown()

func (*ApplicationSummary) XXX_Marshal added in v1.0.0

func (m *ApplicationSummary) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationSummary) XXX_Merge added in v1.0.0

func (dst *ApplicationSummary) XXX_Merge(src proto.Message)

func (*ApplicationSummary) XXX_Size added in v1.0.0

func (m *ApplicationSummary) XXX_Size() int

func (*ApplicationSummary) XXX_Unmarshal added in v1.0.0

func (m *ApplicationSummary) XXX_Unmarshal(b []byte) error

type ApplicationTree added in v1.0.0

type ApplicationTree struct {
	Nodes []ResourceNode `json:"nodes,omitempty" protobuf:"bytes,1,rep,name=nodes"`
}

ApplicationTree holds nodes which belongs to the application

func (*ApplicationTree) DeepCopy added in v1.0.0

func (in *ApplicationTree) DeepCopy() *ApplicationTree

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationTree.

func (*ApplicationTree) DeepCopyInto added in v1.0.0

func (in *ApplicationTree) DeepCopyInto(out *ApplicationTree)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationTree) Descriptor added in v1.0.0

func (*ApplicationTree) Descriptor() ([]byte, []int)

func (*ApplicationTree) FindNode added in v1.0.0

func (t *ApplicationTree) FindNode(group string, kind string, namespace string, name string) *ResourceNode

func (*ApplicationTree) GetSummary added in v1.0.0

func (t *ApplicationTree) GetSummary() ApplicationSummary

func (*ApplicationTree) Marshal added in v1.0.0

func (m *ApplicationTree) Marshal() (dAtA []byte, err error)

func (*ApplicationTree) MarshalTo added in v1.0.0

func (m *ApplicationTree) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationTree) ProtoMessage added in v1.0.0

func (*ApplicationTree) ProtoMessage()

func (*ApplicationTree) Reset added in v1.0.0

func (m *ApplicationTree) Reset()

func (*ApplicationTree) Size added in v1.0.0

func (m *ApplicationTree) Size() (n int)

func (*ApplicationTree) String added in v1.0.0

func (this *ApplicationTree) String() string

func (*ApplicationTree) Unmarshal added in v1.0.0

func (m *ApplicationTree) Unmarshal(dAtA []byte) error

func (*ApplicationTree) XXX_DiscardUnknown added in v1.0.0

func (m *ApplicationTree) XXX_DiscardUnknown()

func (*ApplicationTree) XXX_Marshal added in v1.0.0

func (m *ApplicationTree) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationTree) XXX_Merge added in v1.0.0

func (dst *ApplicationTree) XXX_Merge(src proto.Message)

func (*ApplicationTree) XXX_Size added in v1.0.0

func (m *ApplicationTree) XXX_Size() int

func (*ApplicationTree) XXX_Unmarshal added in v1.0.0

func (m *ApplicationTree) XXX_Unmarshal(b []byte) error

type ApplicationWatchEvent

type ApplicationWatchEvent struct {
	Type watch.EventType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=k8s.io/apimachinery/pkg/watch.EventType"`

	// Application is:
	//  * If Type is Added or Modified: the new state of the object.
	//  * If Type is Deleted: the state of the object immediately before deletion.
	//  * If Type is Error: *api.Status is recommended; other types may make sense
	//    depending on context.
	Application Application `json:"application" protobuf:"bytes,2,opt,name=application"`
}

ApplicationWatchEvent contains information about application change.

func (*ApplicationWatchEvent) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationWatchEvent.

func (*ApplicationWatchEvent) DeepCopyInto

func (in *ApplicationWatchEvent) DeepCopyInto(out *ApplicationWatchEvent)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationWatchEvent) Descriptor

func (*ApplicationWatchEvent) Descriptor() ([]byte, []int)

func (*ApplicationWatchEvent) Marshal

func (m *ApplicationWatchEvent) Marshal() (dAtA []byte, err error)

func (*ApplicationWatchEvent) MarshalTo

func (m *ApplicationWatchEvent) MarshalTo(dAtA []byte) (int, error)

func (*ApplicationWatchEvent) ProtoMessage

func (*ApplicationWatchEvent) ProtoMessage()

func (*ApplicationWatchEvent) Reset

func (m *ApplicationWatchEvent) Reset()

func (*ApplicationWatchEvent) Size

func (m *ApplicationWatchEvent) Size() (n int)

func (*ApplicationWatchEvent) String

func (this *ApplicationWatchEvent) String() string

func (*ApplicationWatchEvent) Unmarshal

func (m *ApplicationWatchEvent) Unmarshal(dAtA []byte) error

func (*ApplicationWatchEvent) XXX_DiscardUnknown added in v0.9.0

func (m *ApplicationWatchEvent) XXX_DiscardUnknown()

func (*ApplicationWatchEvent) XXX_Marshal added in v0.9.0

func (m *ApplicationWatchEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplicationWatchEvent) XXX_Merge added in v0.9.0

func (dst *ApplicationWatchEvent) XXX_Merge(src proto.Message)

func (*ApplicationWatchEvent) XXX_Size added in v0.9.0

func (m *ApplicationWatchEvent) XXX_Size() int

func (*ApplicationWatchEvent) XXX_Unmarshal added in v0.9.0

func (m *ApplicationWatchEvent) XXX_Unmarshal(b []byte) error

type Cluster

type Cluster struct {
	// Server is the API server URL of the Kubernetes cluster
	Server string `json:"server" protobuf:"bytes,1,opt,name=server"`
	// Name of the cluster. If omitted, will use the server address
	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
	// Config holds cluster information for connecting to a cluster
	Config ClusterConfig `json:"config" protobuf:"bytes,3,opt,name=config"`
	// ConnectionState contains information about cluster connection state
	ConnectionState ConnectionState `json:"connectionState,omitempty" protobuf:"bytes,4,opt,name=connectionState"`
}

Cluster is the definition of a cluster resource

func (*Cluster) DeepCopy

func (in *Cluster) DeepCopy() *Cluster

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.

func (*Cluster) DeepCopyInto

func (in *Cluster) DeepCopyInto(out *Cluster)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Cluster) Descriptor

func (*Cluster) Descriptor() ([]byte, []int)

func (*Cluster) Marshal

func (m *Cluster) Marshal() (dAtA []byte, err error)

func (*Cluster) MarshalTo

func (m *Cluster) MarshalTo(dAtA []byte) (int, error)

func (*Cluster) ProtoMessage

func (*Cluster) ProtoMessage()

func (*Cluster) RESTConfig

func (c *Cluster) RESTConfig() *rest.Config

RESTConfig returns a go-client REST config from cluster

func (*Cluster) Reset

func (m *Cluster) Reset()

func (*Cluster) Size

func (m *Cluster) Size() (n int)

func (*Cluster) String

func (this *Cluster) String() string

func (*Cluster) Unmarshal

func (m *Cluster) Unmarshal(dAtA []byte) error

func (*Cluster) XXX_DiscardUnknown added in v0.9.0

func (m *Cluster) XXX_DiscardUnknown()

func (*Cluster) XXX_Marshal added in v0.9.0

func (m *Cluster) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Cluster) XXX_Merge added in v0.9.0

func (dst *Cluster) XXX_Merge(src proto.Message)

func (*Cluster) XXX_Size added in v0.9.0

func (m *Cluster) XXX_Size() int

func (*Cluster) XXX_Unmarshal added in v0.9.0

func (m *Cluster) XXX_Unmarshal(b []byte) error

type ClusterConfig

type ClusterConfig struct {
	// Server requires Basic authentication
	Username string `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
	Password string `json:"password,omitempty" protobuf:"bytes,2,opt,name=password"`

	// Server requires Bearer authentication. This client will not attempt to use
	// refresh tokens for an OAuth2 flow.
	// TODO: demonstrate an OAuth2 compatible client.
	BearerToken string `json:"bearerToken,omitempty" protobuf:"bytes,3,opt,name=bearerToken"`

	// TLSClientConfig contains settings to enable transport layer security
	TLSClientConfig `json:"tlsClientConfig" protobuf:"bytes,4,opt,name=tlsClientConfig"`

	// AWSAuthConfig contains IAM authentication configuration
	AWSAuthConfig *AWSAuthConfig `json:"awsAuthConfig,omitempty" protobuf:"bytes,5,opt,name=awsAuthConfig"`
}

ClusterConfig is the configuration attributes. This structure is subset of the go-client rest.Config with annotations added for marshalling.

func (*ClusterConfig) DeepCopy

func (in *ClusterConfig) DeepCopy() *ClusterConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfig.

func (*ClusterConfig) DeepCopyInto

func (in *ClusterConfig) DeepCopyInto(out *ClusterConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ClusterConfig) Descriptor

func (*ClusterConfig) Descriptor() ([]byte, []int)

func (*ClusterConfig) Marshal

func (m *ClusterConfig) Marshal() (dAtA []byte, err error)

func (*ClusterConfig) MarshalTo

func (m *ClusterConfig) MarshalTo(dAtA []byte) (int, error)

func (*ClusterConfig) ProtoMessage

func (*ClusterConfig) ProtoMessage()

func (*ClusterConfig) Reset

func (m *ClusterConfig) Reset()

func (*ClusterConfig) Size

func (m *ClusterConfig) Size() (n int)

func (*ClusterConfig) String

func (this *ClusterConfig) String() string

func (*ClusterConfig) Unmarshal

func (m *ClusterConfig) Unmarshal(dAtA []byte) error

func (*ClusterConfig) XXX_DiscardUnknown added in v0.9.0

func (m *ClusterConfig) XXX_DiscardUnknown()

func (*ClusterConfig) XXX_Marshal added in v0.9.0

func (m *ClusterConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterConfig) XXX_Merge added in v0.9.0

func (dst *ClusterConfig) XXX_Merge(src proto.Message)

func (*ClusterConfig) XXX_Size added in v0.9.0

func (m *ClusterConfig) XXX_Size() int

func (*ClusterConfig) XXX_Unmarshal added in v0.9.0

func (m *ClusterConfig) XXX_Unmarshal(b []byte) error

type ClusterList

type ClusterList struct {
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	Items           []Cluster `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ClusterList is a collection of Clusters.

func (*ClusterList) DeepCopy

func (in *ClusterList) DeepCopy() *ClusterList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterList.

func (*ClusterList) DeepCopyInto

func (in *ClusterList) DeepCopyInto(out *ClusterList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ClusterList) Descriptor

func (*ClusterList) Descriptor() ([]byte, []int)

func (*ClusterList) Marshal

func (m *ClusterList) Marshal() (dAtA []byte, err error)

func (*ClusterList) MarshalTo

func (m *ClusterList) MarshalTo(dAtA []byte) (int, error)

func (*ClusterList) ProtoMessage

func (*ClusterList) ProtoMessage()

func (*ClusterList) Reset

func (m *ClusterList) Reset()

func (*ClusterList) Size

func (m *ClusterList) Size() (n int)

func (*ClusterList) String

func (this *ClusterList) String() string

func (*ClusterList) Unmarshal

func (m *ClusterList) Unmarshal(dAtA []byte) error

func (*ClusterList) XXX_DiscardUnknown added in v0.9.0

func (m *ClusterList) XXX_DiscardUnknown()

func (*ClusterList) XXX_Marshal added in v0.9.0

func (m *ClusterList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterList) XXX_Merge added in v0.9.0

func (dst *ClusterList) XXX_Merge(src proto.Message)

func (*ClusterList) XXX_Size added in v0.9.0

func (m *ClusterList) XXX_Size() int

func (*ClusterList) XXX_Unmarshal added in v0.9.0

func (m *ClusterList) XXX_Unmarshal(b []byte) error

type Command added in v0.12.0

type Command struct {
	Command []string `json:"command,omitempty" protobuf:"bytes,1,name=command"`
	Args    []string `json:"args,omitempty" protobuf:"bytes,2,rep,name=args"`
}

Command holds binary path and arguments list

func (*Command) DeepCopy added in v0.12.0

func (in *Command) DeepCopy() *Command

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Command.

func (*Command) DeepCopyInto added in v0.12.0

func (in *Command) DeepCopyInto(out *Command)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Command) Descriptor added in v0.12.0

func (*Command) Descriptor() ([]byte, []int)

func (*Command) Marshal added in v0.12.0

func (m *Command) Marshal() (dAtA []byte, err error)

func (*Command) MarshalTo added in v0.12.0

func (m *Command) MarshalTo(dAtA []byte) (int, error)

func (*Command) ProtoMessage added in v0.12.0

func (*Command) ProtoMessage()

func (*Command) Reset added in v0.12.0

func (m *Command) Reset()

func (*Command) Size added in v0.12.0

func (m *Command) Size() (n int)

func (*Command) String added in v0.12.0

func (this *Command) String() string

func (*Command) Unmarshal added in v0.12.0

func (m *Command) Unmarshal(dAtA []byte) error

func (*Command) XXX_DiscardUnknown added in v0.12.0

func (m *Command) XXX_DiscardUnknown()

func (*Command) XXX_Marshal added in v0.12.0

func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Command) XXX_Merge added in v0.12.0

func (dst *Command) XXX_Merge(src proto.Message)

func (*Command) XXX_Size added in v0.12.0

func (m *Command) XXX_Size() int

func (*Command) XXX_Unmarshal added in v0.12.0

func (m *Command) XXX_Unmarshal(b []byte) error

type ComparedTo added in v0.11.0

type ComparedTo struct {
	Source      ApplicationSource      `json:"source" protobuf:"bytes,1,opt,name=source"`
	Destination ApplicationDestination `json:"destination" protobuf:"bytes,2,opt,name=destination"`
}

ComparedTo contains application source and target which was used for resources comparison

func (*ComparedTo) DeepCopy added in v0.11.0

func (in *ComparedTo) DeepCopy() *ComparedTo

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComparedTo.

func (*ComparedTo) DeepCopyInto added in v0.11.0

func (in *ComparedTo) DeepCopyInto(out *ComparedTo)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ComparedTo) Descriptor added in v0.11.0

func (*ComparedTo) Descriptor() ([]byte, []int)

func (*ComparedTo) Marshal added in v0.11.0

func (m *ComparedTo) Marshal() (dAtA []byte, err error)

func (*ComparedTo) MarshalTo added in v0.11.0

func (m *ComparedTo) MarshalTo(dAtA []byte) (int, error)

func (*ComparedTo) ProtoMessage added in v0.11.0

func (*ComparedTo) ProtoMessage()

func (*ComparedTo) Reset added in v0.11.0

func (m *ComparedTo) Reset()

func (*ComparedTo) Size added in v0.11.0

func (m *ComparedTo) Size() (n int)

func (*ComparedTo) String added in v0.11.0

func (this *ComparedTo) String() string

func (*ComparedTo) Unmarshal added in v0.11.0

func (m *ComparedTo) Unmarshal(dAtA []byte) error

func (*ComparedTo) XXX_DiscardUnknown added in v0.11.0

func (m *ComparedTo) XXX_DiscardUnknown()

func (*ComparedTo) XXX_Marshal added in v0.11.0

func (m *ComparedTo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ComparedTo) XXX_Merge added in v0.11.0

func (dst *ComparedTo) XXX_Merge(src proto.Message)

func (*ComparedTo) XXX_Size added in v0.11.0

func (m *ComparedTo) XXX_Size() int

func (*ComparedTo) XXX_Unmarshal added in v0.11.0

func (m *ComparedTo) XXX_Unmarshal(b []byte) error

type ComponentParameter

type ComponentParameter struct {
	Component string `json:"component,omitempty" protobuf:"bytes,1,opt,name=component"`
	Name      string `json:"name" protobuf:"bytes,2,opt,name=name"`
	Value     string `json:"value" protobuf:"bytes,3,opt,name=value"`
}

ComponentParameter contains information about component parameter value

func (*ComponentParameter) DeepCopy

func (in *ComponentParameter) DeepCopy() *ComponentParameter

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentParameter.

func (*ComponentParameter) DeepCopyInto

func (in *ComponentParameter) DeepCopyInto(out *ComponentParameter)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ComponentParameter) Descriptor

func (*ComponentParameter) Descriptor() ([]byte, []int)

func (*ComponentParameter) Marshal

func (m *ComponentParameter) Marshal() (dAtA []byte, err error)

func (*ComponentParameter) MarshalTo

func (m *ComponentParameter) MarshalTo(dAtA []byte) (int, error)

func (*ComponentParameter) ProtoMessage

func (*ComponentParameter) ProtoMessage()

func (*ComponentParameter) Reset

func (m *ComponentParameter) Reset()

func (*ComponentParameter) Size

func (m *ComponentParameter) Size() (n int)

func (*ComponentParameter) String

func (this *ComponentParameter) String() string

func (*ComponentParameter) Unmarshal

func (m *ComponentParameter) Unmarshal(dAtA []byte) error

func (*ComponentParameter) XXX_DiscardUnknown added in v0.9.0

func (m *ComponentParameter) XXX_DiscardUnknown()

func (*ComponentParameter) XXX_Marshal added in v0.9.0

func (m *ComponentParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ComponentParameter) XXX_Merge added in v0.9.0

func (dst *ComponentParameter) XXX_Merge(src proto.Message)

func (*ComponentParameter) XXX_Size added in v0.9.0

func (m *ComponentParameter) XXX_Size() int

func (*ComponentParameter) XXX_Unmarshal added in v0.9.0

func (m *ComponentParameter) XXX_Unmarshal(b []byte) error

type ConfigManagementPlugin added in v0.12.0

type ConfigManagementPlugin struct {
	Name     string   `json:"name" protobuf:"bytes,1,name=name"`
	Init     *Command `json:"init,omitempty" protobuf:"bytes,2,name=init"`
	Generate Command  `json:"generate" protobuf:"bytes,3,name=generate"`
}

ConfigManagementPlugin contains config management plugin configuration

func (*ConfigManagementPlugin) DeepCopy added in v0.12.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigManagementPlugin.

func (*ConfigManagementPlugin) DeepCopyInto added in v0.12.0

func (in *ConfigManagementPlugin) DeepCopyInto(out *ConfigManagementPlugin)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ConfigManagementPlugin) Descriptor added in v0.12.0

func (*ConfigManagementPlugin) Descriptor() ([]byte, []int)

func (*ConfigManagementPlugin) Marshal added in v0.12.0

func (m *ConfigManagementPlugin) Marshal() (dAtA []byte, err error)

func (*ConfigManagementPlugin) MarshalTo added in v0.12.0

func (m *ConfigManagementPlugin) MarshalTo(dAtA []byte) (int, error)

func (*ConfigManagementPlugin) ProtoMessage added in v0.12.0

func (*ConfigManagementPlugin) ProtoMessage()

func (*ConfigManagementPlugin) Reset added in v0.12.0

func (m *ConfigManagementPlugin) Reset()

func (*ConfigManagementPlugin) Size added in v0.12.0

func (m *ConfigManagementPlugin) Size() (n int)

func (*ConfigManagementPlugin) String added in v0.12.0

func (this *ConfigManagementPlugin) String() string

func (*ConfigManagementPlugin) Unmarshal added in v0.12.0

func (m *ConfigManagementPlugin) Unmarshal(dAtA []byte) error

func (*ConfigManagementPlugin) XXX_DiscardUnknown added in v0.12.0

func (m *ConfigManagementPlugin) XXX_DiscardUnknown()

func (*ConfigManagementPlugin) XXX_Marshal added in v0.12.0

func (m *ConfigManagementPlugin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigManagementPlugin) XXX_Merge added in v0.12.0

func (dst *ConfigManagementPlugin) XXX_Merge(src proto.Message)

func (*ConfigManagementPlugin) XXX_Size added in v0.12.0

func (m *ConfigManagementPlugin) XXX_Size() int

func (*ConfigManagementPlugin) XXX_Unmarshal added in v0.12.0

func (m *ConfigManagementPlugin) XXX_Unmarshal(b []byte) error

type ConnectionState added in v0.5.0

type ConnectionState struct {
	Status     ConnectionStatus `json:"status" protobuf:"bytes,1,opt,name=status"`
	Message    string           `json:"message" protobuf:"bytes,2,opt,name=message"`
	ModifiedAt *metav1.Time     `json:"attemptedAt" protobuf:"bytes,3,opt,name=attemptedAt"`
}

ConnectionState contains information about remote resource connection state

func (*ConnectionState) DeepCopy added in v0.5.0

func (in *ConnectionState) DeepCopy() *ConnectionState

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionState.

func (*ConnectionState) DeepCopyInto added in v0.5.0

func (in *ConnectionState) DeepCopyInto(out *ConnectionState)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ConnectionState) Descriptor added in v0.5.0

func (*ConnectionState) Descriptor() ([]byte, []int)

func (*ConnectionState) Marshal added in v0.5.0

func (m *ConnectionState) Marshal() (dAtA []byte, err error)

func (*ConnectionState) MarshalTo added in v0.5.0

func (m *ConnectionState) MarshalTo(dAtA []byte) (int, error)

func (*ConnectionState) ProtoMessage added in v0.5.0

func (*ConnectionState) ProtoMessage()

func (*ConnectionState) Reset added in v0.5.0

func (m *ConnectionState) Reset()

func (*ConnectionState) Size added in v0.5.0

func (m *ConnectionState) Size() (n int)

func (*ConnectionState) String added in v0.5.0

func (this *ConnectionState) String() string

func (*ConnectionState) Unmarshal added in v0.5.0

func (m *ConnectionState) Unmarshal(dAtA []byte) error

func (*ConnectionState) XXX_DiscardUnknown added in v0.9.0

func (m *ConnectionState) XXX_DiscardUnknown()

func (*ConnectionState) XXX_Marshal added in v0.9.0

func (m *ConnectionState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConnectionState) XXX_Merge added in v0.9.0

func (dst *ConnectionState) XXX_Merge(src proto.Message)

func (*ConnectionState) XXX_Size added in v0.9.0

func (m *ConnectionState) XXX_Size() int

func (*ConnectionState) XXX_Unmarshal added in v0.9.0

func (m *ConnectionState) XXX_Unmarshal(b []byte) error

type ConnectionStatus added in v0.5.0

type ConnectionStatus = string

ConnectionStatus represents connection status

type HealthStatus added in v0.4.0

type HealthStatus struct {
	Status  HealthStatusCode `json:"status,omitempty" protobuf:"bytes,1,opt,name=status"`
	Message string           `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
}

func (*HealthStatus) DeepCopy added in v0.4.0

func (in *HealthStatus) DeepCopy() *HealthStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthStatus.

func (*HealthStatus) DeepCopyInto added in v0.4.0

func (in *HealthStatus) DeepCopyInto(out *HealthStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*HealthStatus) Descriptor added in v0.4.0

func (*HealthStatus) Descriptor() ([]byte, []int)

func (*HealthStatus) Marshal added in v0.4.0

func (m *HealthStatus) Marshal() (dAtA []byte, err error)

func (*HealthStatus) MarshalTo added in v0.4.0

func (m *HealthStatus) MarshalTo(dAtA []byte) (int, error)

func (*HealthStatus) ProtoMessage added in v0.4.0

func (*HealthStatus) ProtoMessage()

func (*HealthStatus) Reset added in v0.4.0

func (m *HealthStatus) Reset()

func (*HealthStatus) Size added in v0.4.0

func (m *HealthStatus) Size() (n int)

func (*HealthStatus) String added in v0.4.0

func (this *HealthStatus) String() string

func (*HealthStatus) Unmarshal added in v0.4.0

func (m *HealthStatus) Unmarshal(dAtA []byte) error

func (*HealthStatus) XXX_DiscardUnknown added in v0.9.0

func (m *HealthStatus) XXX_DiscardUnknown()

func (*HealthStatus) XXX_Marshal added in v0.9.0

func (m *HealthStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HealthStatus) XXX_Merge added in v0.9.0

func (dst *HealthStatus) XXX_Merge(src proto.Message)

func (*HealthStatus) XXX_Size added in v0.9.0

func (m *HealthStatus) XXX_Size() int

func (*HealthStatus) XXX_Unmarshal added in v0.9.0

func (m *HealthStatus) XXX_Unmarshal(b []byte) error

type HealthStatusCode added in v0.4.0

type HealthStatusCode = string
const (
	HealthStatusUnknown     HealthStatusCode = "Unknown"
	HealthStatusProgressing HealthStatusCode = "Progressing"
	HealthStatusHealthy     HealthStatusCode = "Healthy"
	HealthStatusSuspended   HealthStatusCode = "Suspended"
	HealthStatusDegraded    HealthStatusCode = "Degraded"
	HealthStatusMissing     HealthStatusCode = "Missing"
)

type HelmParameter added in v0.12.0

type HelmParameter struct {
	// Name is the name of the helm parameter
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	// Value is the value for the helm parameter
	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
}

HelmParameter is a parameter to a helm template

func (*HelmParameter) DeepCopy added in v0.12.0

func (in *HelmParameter) DeepCopy() *HelmParameter

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HelmParameter.

func (*HelmParameter) DeepCopyInto added in v0.12.0

func (in *HelmParameter) DeepCopyInto(out *HelmParameter)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*HelmParameter) Descriptor added in v0.12.0

func (*HelmParameter) Descriptor() ([]byte, []int)

func (*HelmParameter) Marshal added in v0.12.0

func (m *HelmParameter) Marshal() (dAtA []byte, err error)

func (*HelmParameter) MarshalTo added in v0.12.0

func (m *HelmParameter) MarshalTo(dAtA []byte) (int, error)

func (*HelmParameter) ProtoMessage added in v0.12.0

func (*HelmParameter) ProtoMessage()

func (*HelmParameter) Reset added in v0.12.0

func (m *HelmParameter) Reset()

func (*HelmParameter) Size added in v0.12.0

func (m *HelmParameter) Size() (n int)

func (*HelmParameter) String added in v0.12.0

func (this *HelmParameter) String() string

func (*HelmParameter) Unmarshal added in v0.12.0

func (m *HelmParameter) Unmarshal(dAtA []byte) error

func (*HelmParameter) XXX_DiscardUnknown added in v0.12.0

func (m *HelmParameter) XXX_DiscardUnknown()

func (*HelmParameter) XXX_Marshal added in v0.12.0

func (m *HelmParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HelmParameter) XXX_Merge added in v0.12.0

func (dst *HelmParameter) XXX_Merge(src proto.Message)

func (*HelmParameter) XXX_Size added in v0.12.0

func (m *HelmParameter) XXX_Size() int

func (*HelmParameter) XXX_Unmarshal added in v0.12.0

func (m *HelmParameter) XXX_Unmarshal(b []byte) error

type HelmRepository added in v0.11.0

type HelmRepository struct {
	URL      string `json:"url" protobuf:"bytes,1,opt,name=url"`
	Name     string `json:"name" protobuf:"bytes,2,opt,name=name"`
	CAData   []byte `json:"caData,omitempty" protobuf:"bytes,3,opt,name=caData"`
	CertData []byte `json:"certData,omitempty" protobuf:"bytes,4,opt,name=certData"`
	KeyData  []byte `json:"keyData,omitempty" protobuf:"bytes,5,opt,name=keyData"`
	Username string `json:"username,omitempty" protobuf:"bytes,6,opt,name=username"`
	Password string `json:"password,omitempty" protobuf:"bytes,7,opt,name=password"`
}

func (*HelmRepository) DeepCopy added in v0.11.0

func (in *HelmRepository) DeepCopy() *HelmRepository

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HelmRepository.

func (*HelmRepository) DeepCopyInto added in v0.11.0

func (in *HelmRepository) DeepCopyInto(out *HelmRepository)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*HelmRepository) Descriptor added in v0.11.0

func (*HelmRepository) Descriptor() ([]byte, []int)

func (*HelmRepository) Marshal added in v0.11.0

func (m *HelmRepository) Marshal() (dAtA []byte, err error)

func (*HelmRepository) MarshalTo added in v0.11.0

func (m *HelmRepository) MarshalTo(dAtA []byte) (int, error)

func (*HelmRepository) ProtoMessage added in v0.11.0

func (*HelmRepository) ProtoMessage()

func (*HelmRepository) Reset added in v0.11.0

func (m *HelmRepository) Reset()

func (*HelmRepository) Size added in v0.11.0

func (m *HelmRepository) Size() (n int)

func (*HelmRepository) String added in v0.11.0

func (this *HelmRepository) String() string

func (*HelmRepository) Unmarshal added in v0.11.0

func (m *HelmRepository) Unmarshal(dAtA []byte) error

func (*HelmRepository) XXX_DiscardUnknown added in v0.11.0

func (m *HelmRepository) XXX_DiscardUnknown()

func (*HelmRepository) XXX_Marshal added in v0.11.0

func (m *HelmRepository) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HelmRepository) XXX_Merge added in v0.11.0

func (dst *HelmRepository) XXX_Merge(src proto.Message)

func (*HelmRepository) XXX_Size added in v0.11.0

func (m *HelmRepository) XXX_Size() int

func (*HelmRepository) XXX_Unmarshal added in v0.11.0

func (m *HelmRepository) XXX_Unmarshal(b []byte) error

type HookDeletePolicy added in v0.6.0

type HookDeletePolicy string
const (
	HookDeletePolicyHookSucceeded HookDeletePolicy = "HookSucceeded"
	HookDeletePolicyHookFailed    HookDeletePolicy = "HookFailed"
)

type HookType added in v0.6.0

type HookType string
const (
	HookTypePreSync  HookType = "PreSync"
	HookTypeSync     HookType = "Sync"
	HookTypePostSync HookType = "PostSync"
	HookTypeSkip     HookType = "Skip"
)

type Info added in v1.1.0

type Info struct {
	Name  string `json:"name" protobuf:"bytes,1,name=name"`
	Value string `json:"value" protobuf:"bytes,2,name=value"`
}

func (*Info) DeepCopy added in v1.1.0

func (in *Info) DeepCopy() *Info

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Info.

func (*Info) DeepCopyInto added in v1.1.0

func (in *Info) DeepCopyInto(out *Info)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Info) Descriptor added in v1.1.0

func (*Info) Descriptor() ([]byte, []int)

func (*Info) Marshal added in v1.1.0

func (m *Info) Marshal() (dAtA []byte, err error)

func (*Info) MarshalTo added in v1.1.0

func (m *Info) MarshalTo(dAtA []byte) (int, error)

func (*Info) ProtoMessage added in v1.1.0

func (*Info) ProtoMessage()

func (*Info) Reset added in v1.1.0

func (m *Info) Reset()

func (*Info) Size added in v1.1.0

func (m *Info) Size() (n int)

func (*Info) String added in v1.1.0

func (this *Info) String() string

func (*Info) Unmarshal added in v1.1.0

func (m *Info) Unmarshal(dAtA []byte) error

func (*Info) XXX_DiscardUnknown added in v1.1.0

func (m *Info) XXX_DiscardUnknown()

func (*Info) XXX_Marshal added in v1.1.0

func (m *Info) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Info) XXX_Merge added in v1.1.0

func (dst *Info) XXX_Merge(src proto.Message)

func (*Info) XXX_Size added in v1.1.0

func (m *Info) XXX_Size() int

func (*Info) XXX_Unmarshal added in v1.1.0

func (m *Info) XXX_Unmarshal(b []byte) error

type InfoItem added in v0.11.0

type InfoItem struct {
	// Name is a human readable title for this piece of information.
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	// Value is human readable content.
	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
}

InfoItem contains human readable information about object

func (*InfoItem) DeepCopy added in v0.11.0

func (in *InfoItem) DeepCopy() *InfoItem

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfoItem.

func (*InfoItem) DeepCopyInto added in v0.11.0

func (in *InfoItem) DeepCopyInto(out *InfoItem)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*InfoItem) Descriptor added in v0.11.0

func (*InfoItem) Descriptor() ([]byte, []int)

func (*InfoItem) Marshal added in v0.11.0

func (m *InfoItem) Marshal() (dAtA []byte, err error)

func (*InfoItem) MarshalTo added in v0.11.0

func (m *InfoItem) MarshalTo(dAtA []byte) (int, error)

func (*InfoItem) ProtoMessage added in v0.11.0

func (*InfoItem) ProtoMessage()

func (*InfoItem) Reset added in v0.11.0

func (m *InfoItem) Reset()

func (*InfoItem) Size added in v0.11.0

func (m *InfoItem) Size() (n int)

func (*InfoItem) String added in v0.11.0

func (this *InfoItem) String() string

func (*InfoItem) Unmarshal added in v0.11.0

func (m *InfoItem) Unmarshal(dAtA []byte) error

func (*InfoItem) XXX_DiscardUnknown added in v0.11.0

func (m *InfoItem) XXX_DiscardUnknown()

func (*InfoItem) XXX_Marshal added in v0.11.0

func (m *InfoItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoItem) XXX_Merge added in v0.11.0

func (dst *InfoItem) XXX_Merge(src proto.Message)

func (*InfoItem) XXX_Size added in v0.11.0

func (m *InfoItem) XXX_Size() int

func (*InfoItem) XXX_Unmarshal added in v0.11.0

func (m *InfoItem) XXX_Unmarshal(b []byte) error

type JWTToken added in v0.8.0

type JWTToken struct {
	IssuedAt  int64 `json:"iat" protobuf:"int64,1,opt,name=iat"`
	ExpiresAt int64 `json:"exp,omitempty" protobuf:"int64,2,opt,name=exp"`
}

JWTToken holds the issuedAt and expiresAt values of a token

func (*JWTToken) DeepCopy added in v0.8.0

func (in *JWTToken) DeepCopy() *JWTToken

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWTToken.

func (*JWTToken) DeepCopyInto added in v0.8.0

func (in *JWTToken) DeepCopyInto(out *JWTToken)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*JWTToken) Descriptor added in v0.8.0

func (*JWTToken) Descriptor() ([]byte, []int)

func (*JWTToken) Marshal added in v0.8.0

func (m *JWTToken) Marshal() (dAtA []byte, err error)

func (*JWTToken) MarshalTo added in v0.8.0

func (m *JWTToken) MarshalTo(dAtA []byte) (int, error)

func (*JWTToken) ProtoMessage added in v0.8.0

func (*JWTToken) ProtoMessage()

func (*JWTToken) Reset added in v0.8.0

func (m *JWTToken) Reset()

func (*JWTToken) Size added in v0.8.0

func (m *JWTToken) Size() (n int)

func (*JWTToken) String added in v0.8.0

func (this *JWTToken) String() string

func (*JWTToken) Unmarshal added in v0.8.0

func (m *JWTToken) Unmarshal(dAtA []byte) error

func (*JWTToken) XXX_DiscardUnknown added in v0.9.0

func (m *JWTToken) XXX_DiscardUnknown()

func (*JWTToken) XXX_Marshal added in v0.9.0

func (m *JWTToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*JWTToken) XXX_Merge added in v0.9.0

func (dst *JWTToken) XXX_Merge(src proto.Message)

func (*JWTToken) XXX_Size added in v0.9.0

func (m *JWTToken) XXX_Size() int

func (*JWTToken) XXX_Unmarshal added in v0.9.0

func (m *JWTToken) XXX_Unmarshal(b []byte) error

type JsonnetVar added in v0.12.0

type JsonnetVar struct {
	Name  string `json:"name" protobuf:"bytes,1,opt,name=name"`
	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
	Code  bool   `json:"code,omitempty" protobuf:"bytes,3,opt,name=code"`
}

JsonnetVar is a jsonnet variable

func (*JsonnetVar) DeepCopy added in v0.12.0

func (in *JsonnetVar) DeepCopy() *JsonnetVar

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JsonnetVar.

func (*JsonnetVar) DeepCopyInto added in v0.12.0

func (in *JsonnetVar) DeepCopyInto(out *JsonnetVar)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*JsonnetVar) Descriptor added in v0.12.0

func (*JsonnetVar) Descriptor() ([]byte, []int)

func (*JsonnetVar) Marshal added in v0.12.0

func (m *JsonnetVar) Marshal() (dAtA []byte, err error)

func (*JsonnetVar) MarshalTo added in v0.12.0

func (m *JsonnetVar) MarshalTo(dAtA []byte) (int, error)

func (*JsonnetVar) ProtoMessage added in v0.12.0

func (*JsonnetVar) ProtoMessage()

func (*JsonnetVar) Reset added in v0.12.0

func (m *JsonnetVar) Reset()

func (*JsonnetVar) Size added in v0.12.0

func (m *JsonnetVar) Size() (n int)

func (*JsonnetVar) String added in v0.12.0

func (this *JsonnetVar) String() string

func (*JsonnetVar) Unmarshal added in v0.12.0

func (m *JsonnetVar) Unmarshal(dAtA []byte) error

func (*JsonnetVar) XXX_DiscardUnknown added in v0.12.0

func (m *JsonnetVar) XXX_DiscardUnknown()

func (*JsonnetVar) XXX_Marshal added in v0.12.0

func (m *JsonnetVar) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*JsonnetVar) XXX_Merge added in v0.12.0

func (dst *JsonnetVar) XXX_Merge(src proto.Message)

func (*JsonnetVar) XXX_Size added in v0.12.0

func (m *JsonnetVar) XXX_Size() int

func (*JsonnetVar) XXX_Unmarshal added in v0.12.0

func (m *JsonnetVar) XXX_Unmarshal(b []byte) error

type KsonnetParameter added in v0.12.0

type KsonnetParameter struct {
	Component string `json:"component,omitempty" protobuf:"bytes,1,opt,name=component"`
	Name      string `json:"name" protobuf:"bytes,2,opt,name=name"`
	Value     string `json:"value" protobuf:"bytes,3,opt,name=value"`
}

KsonnetParameter is a ksonnet component parameter

func (*KsonnetParameter) DeepCopy added in v0.12.0

func (in *KsonnetParameter) DeepCopy() *KsonnetParameter

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KsonnetParameter.

func (*KsonnetParameter) DeepCopyInto added in v0.12.0

func (in *KsonnetParameter) DeepCopyInto(out *KsonnetParameter)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*KsonnetParameter) Descriptor added in v0.12.0

func (*KsonnetParameter) Descriptor() ([]byte, []int)

func (*KsonnetParameter) Marshal added in v0.12.0

func (m *KsonnetParameter) Marshal() (dAtA []byte, err error)

func (*KsonnetParameter) MarshalTo added in v0.12.0

func (m *KsonnetParameter) MarshalTo(dAtA []byte) (int, error)

func (*KsonnetParameter) ProtoMessage added in v0.12.0

func (*KsonnetParameter) ProtoMessage()

func (*KsonnetParameter) Reset added in v0.12.0

func (m *KsonnetParameter) Reset()

func (*KsonnetParameter) Size added in v0.12.0

func (m *KsonnetParameter) Size() (n int)

func (*KsonnetParameter) String added in v0.12.0

func (this *KsonnetParameter) String() string

func (*KsonnetParameter) Unmarshal added in v0.12.0

func (m *KsonnetParameter) Unmarshal(dAtA []byte) error

func (*KsonnetParameter) XXX_DiscardUnknown added in v0.12.0

func (m *KsonnetParameter) XXX_DiscardUnknown()

func (*KsonnetParameter) XXX_Marshal added in v0.12.0

func (m *KsonnetParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KsonnetParameter) XXX_Merge added in v0.12.0

func (dst *KsonnetParameter) XXX_Merge(src proto.Message)

func (*KsonnetParameter) XXX_Size added in v0.12.0

func (m *KsonnetParameter) XXX_Size() int

func (*KsonnetParameter) XXX_Unmarshal added in v0.12.0

func (m *KsonnetParameter) XXX_Unmarshal(b []byte) error

type KustomizeImageTag added in v0.12.0

type KustomizeImageTag struct {
	// Name is the name of the image (e.g. nginx)
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	// Value is the value for the new tag (e.g. 1.8.0)
	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
}

KustomizeImageTag is a kustomize image tag

func (*KustomizeImageTag) DeepCopy added in v0.12.0

func (in *KustomizeImageTag) DeepCopy() *KustomizeImageTag

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KustomizeImageTag.

func (*KustomizeImageTag) DeepCopyInto added in v0.12.0

func (in *KustomizeImageTag) DeepCopyInto(out *KustomizeImageTag)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*KustomizeImageTag) Descriptor added in v0.12.0

func (*KustomizeImageTag) Descriptor() ([]byte, []int)

func (*KustomizeImageTag) Marshal added in v0.12.0

func (m *KustomizeImageTag) Marshal() (dAtA []byte, err error)

func (*KustomizeImageTag) MarshalTo added in v0.12.0

func (m *KustomizeImageTag) MarshalTo(dAtA []byte) (int, error)

func (*KustomizeImageTag) ProtoMessage added in v0.12.0

func (*KustomizeImageTag) ProtoMessage()

func (*KustomizeImageTag) Reset added in v0.12.0

func (m *KustomizeImageTag) Reset()

func (*KustomizeImageTag) Size added in v0.12.0

func (m *KustomizeImageTag) Size() (n int)

func (*KustomizeImageTag) String added in v0.12.0

func (this *KustomizeImageTag) String() string

func (*KustomizeImageTag) Unmarshal added in v0.12.0

func (m *KustomizeImageTag) Unmarshal(dAtA []byte) error

func (*KustomizeImageTag) XXX_DiscardUnknown added in v0.12.0

func (m *KustomizeImageTag) XXX_DiscardUnknown()

func (*KustomizeImageTag) XXX_Marshal added in v0.12.0

func (m *KustomizeImageTag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KustomizeImageTag) XXX_Merge added in v0.12.0

func (dst *KustomizeImageTag) XXX_Merge(src proto.Message)

func (*KustomizeImageTag) XXX_Size added in v0.12.0

func (m *KustomizeImageTag) XXX_Size() int

func (*KustomizeImageTag) XXX_Unmarshal added in v0.12.0

func (m *KustomizeImageTag) XXX_Unmarshal(b []byte) error

type Operation added in v0.4.0

type Operation struct {
	Sync *SyncOperation `json:"sync,omitempty" protobuf:"bytes,1,opt,name=sync"`
}

Operation contains requested operation parameters.

func (*Operation) DeepCopy added in v0.4.0

func (in *Operation) DeepCopy() *Operation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Operation.

func (*Operation) DeepCopyInto added in v0.4.0

func (in *Operation) DeepCopyInto(out *Operation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Operation) Descriptor added in v0.4.0

func (*Operation) Descriptor() ([]byte, []int)

func (*Operation) Marshal added in v0.4.0

func (m *Operation) Marshal() (dAtA []byte, err error)

func (*Operation) MarshalTo added in v0.4.0

func (m *Operation) MarshalTo(dAtA []byte) (int, error)

func (*Operation) ProtoMessage added in v0.4.0

func (*Operation) ProtoMessage()

func (*Operation) Reset added in v0.4.0

func (m *Operation) Reset()

func (*Operation) Size added in v0.4.0

func (m *Operation) Size() (n int)

func (*Operation) String added in v0.4.0

func (this *Operation) String() string

func (*Operation) Unmarshal added in v0.4.0

func (m *Operation) Unmarshal(dAtA []byte) error

func (*Operation) XXX_DiscardUnknown added in v0.9.0

func (m *Operation) XXX_DiscardUnknown()

func (*Operation) XXX_Marshal added in v0.9.0

func (m *Operation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Operation) XXX_Merge added in v0.9.0

func (dst *Operation) XXX_Merge(src proto.Message)

func (*Operation) XXX_Size added in v0.9.0

func (m *Operation) XXX_Size() int

func (*Operation) XXX_Unmarshal added in v0.9.0

func (m *Operation) XXX_Unmarshal(b []byte) error

type OperationPhase added in v0.4.0

type OperationPhase string
const (
	OperationRunning     OperationPhase = "Running"
	OperationTerminating OperationPhase = "Terminating"
	OperationFailed      OperationPhase = "Failed"
	OperationError       OperationPhase = "Error"
	OperationSucceeded   OperationPhase = "Succeeded"
)

func (OperationPhase) Completed added in v0.4.0

func (os OperationPhase) Completed() bool

func (OperationPhase) Successful added in v0.4.0

func (os OperationPhase) Successful() bool

type OperationState added in v0.4.0

type OperationState struct {
	// Operation is the original requested operation
	Operation Operation `json:"operation" protobuf:"bytes,1,opt,name=operation"`
	// Phase is the current phase of the operation
	Phase OperationPhase `json:"phase" protobuf:"bytes,2,opt,name=phase"`
	// Message hold any pertinent messages when attempting to perform operation (typically errors).
	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
	// SyncResult is the result of a Sync operation
	SyncResult *SyncOperationResult `json:"syncResult,omitempty" protobuf:"bytes,4,opt,name=syncResult"`
	// StartedAt contains time of operation start
	StartedAt metav1.Time `json:"startedAt" protobuf:"bytes,6,opt,name=startedAt"`
	// FinishedAt contains time of operation completion
	FinishedAt *metav1.Time `json:"finishedAt,omitempty" protobuf:"bytes,7,opt,name=finishedAt"`
}

OperationState contains information about state of currently performing operation on application.

func (*OperationState) DeepCopy added in v0.4.0

func (in *OperationState) DeepCopy() *OperationState

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperationState.

func (*OperationState) DeepCopyInto added in v0.4.0

func (in *OperationState) DeepCopyInto(out *OperationState)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*OperationState) Descriptor added in v0.4.0

func (*OperationState) Descriptor() ([]byte, []int)

func (*OperationState) Marshal added in v0.4.0

func (m *OperationState) Marshal() (dAtA []byte, err error)

func (*OperationState) MarshalTo added in v0.4.0

func (m *OperationState) MarshalTo(dAtA []byte) (int, error)

func (*OperationState) ProtoMessage added in v0.4.0

func (*OperationState) ProtoMessage()

func (*OperationState) Reset added in v0.4.0

func (m *OperationState) Reset()

func (*OperationState) Size added in v0.4.0

func (m *OperationState) Size() (n int)

func (*OperationState) String added in v0.4.0

func (this *OperationState) String() string

func (*OperationState) Unmarshal added in v0.4.0

func (m *OperationState) Unmarshal(dAtA []byte) error

func (*OperationState) XXX_DiscardUnknown added in v0.9.0

func (m *OperationState) XXX_DiscardUnknown()

func (*OperationState) XXX_Marshal added in v0.9.0

func (m *OperationState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*OperationState) XXX_Merge added in v0.9.0

func (dst *OperationState) XXX_Merge(src proto.Message)

func (*OperationState) XXX_Size added in v0.9.0

func (m *OperationState) XXX_Size() int

func (*OperationState) XXX_Unmarshal added in v0.9.0

func (m *OperationState) XXX_Unmarshal(b []byte) error

type ProjectRole added in v0.8.0

type ProjectRole struct {
	// Name is a name for this role
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Description is a description of the role
	Description string `json:"description,omitempty" protobuf:"bytes,2,opt,name=description"`
	// Policies Stores a list of casbin formated strings that define access policies for the role in the project
	Policies []string `json:"policies,omitempty" protobuf:"bytes,3,rep,name=policies"`
	// JWTTokens are a list of generated JWT tokens bound to this role
	JWTTokens []JWTToken `json:"jwtTokens,omitempty" protobuf:"bytes,4,rep,name=jwtTokens"`
	// Groups are a list of OIDC group claims bound to this role
	Groups []string `json:"groups,omitempty" protobuf:"bytes,5,rep,name=groups"`
}

ProjectRole represents a role that has access to a project

func (*ProjectRole) DeepCopy added in v0.8.0

func (in *ProjectRole) DeepCopy() *ProjectRole

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectRole.

func (*ProjectRole) DeepCopyInto added in v0.8.0

func (in *ProjectRole) DeepCopyInto(out *ProjectRole)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ProjectRole) Descriptor added in v0.8.0

func (*ProjectRole) Descriptor() ([]byte, []int)

func (*ProjectRole) Marshal added in v0.8.0

func (m *ProjectRole) Marshal() (dAtA []byte, err error)

func (*ProjectRole) MarshalTo added in v0.8.0

func (m *ProjectRole) MarshalTo(dAtA []byte) (int, error)

func (*ProjectRole) ProtoMessage added in v0.8.0

func (*ProjectRole) ProtoMessage()

func (*ProjectRole) Reset added in v0.8.0

func (m *ProjectRole) Reset()

func (*ProjectRole) Size added in v0.8.0

func (m *ProjectRole) Size() (n int)

func (*ProjectRole) String added in v0.8.0

func (this *ProjectRole) String() string

func (*ProjectRole) Unmarshal added in v0.8.0

func (m *ProjectRole) Unmarshal(dAtA []byte) error

func (*ProjectRole) XXX_DiscardUnknown added in v0.9.0

func (m *ProjectRole) XXX_DiscardUnknown()

func (*ProjectRole) XXX_Marshal added in v0.9.0

func (m *ProjectRole) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProjectRole) XXX_Merge added in v0.9.0

func (dst *ProjectRole) XXX_Merge(src proto.Message)

func (*ProjectRole) XXX_Size added in v0.9.0

func (m *ProjectRole) XXX_Size() int

func (*ProjectRole) XXX_Unmarshal added in v0.9.0

func (m *ProjectRole) XXX_Unmarshal(b []byte) error

type RefreshType added in v0.11.0

type RefreshType string
const (
	RefreshTypeNormal RefreshType = "normal"
	RefreshTypeHard   RefreshType = "hard"
)

type Repository

type Repository struct {
	Repo                  string          `json:"repo" protobuf:"bytes,1,opt,name=repo"`
	Username              string          `json:"username,omitempty" protobuf:"bytes,2,opt,name=username"`
	Password              string          `json:"password,omitempty" protobuf:"bytes,3,opt,name=password"`
	SSHPrivateKey         string          `json:"sshPrivateKey,omitempty" protobuf:"bytes,4,opt,name=sshPrivateKey"`
	ConnectionState       ConnectionState `json:"connectionState,omitempty" protobuf:"bytes,5,opt,name=connectionState"`
	InsecureIgnoreHostKey bool            `json:"insecureIgnoreHostKey,omitempty" protobuf:"bytes,6,opt,name=insecureIgnoreHostKey"`
}

Repository is a Git repository holding application configurations

func (*Repository) CopyCredentialsFrom added in v1.0.0

func (m *Repository) CopyCredentialsFrom(source *Repository)

func (*Repository) DeepCopy

func (in *Repository) DeepCopy() *Repository

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Repository.

func (*Repository) DeepCopyInto

func (in *Repository) DeepCopyInto(out *Repository)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Repository) Descriptor

func (*Repository) Descriptor() ([]byte, []int)

func (*Repository) HasCredentials added in v1.0.0

func (m *Repository) HasCredentials() bool

func (*Repository) Marshal

func (m *Repository) Marshal() (dAtA []byte, err error)

func (*Repository) MarshalTo

func (m *Repository) MarshalTo(dAtA []byte) (int, error)

func (*Repository) ProtoMessage

func (*Repository) ProtoMessage()

func (*Repository) Reset

func (m *Repository) Reset()

func (*Repository) Size

func (m *Repository) Size() (n int)

func (*Repository) String

func (this *Repository) String() string

func (*Repository) Unmarshal

func (m *Repository) Unmarshal(dAtA []byte) error

func (*Repository) XXX_DiscardUnknown added in v0.9.0

func (m *Repository) XXX_DiscardUnknown()

func (*Repository) XXX_Marshal added in v0.9.0

func (m *Repository) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Repository) XXX_Merge added in v0.9.0

func (dst *Repository) XXX_Merge(src proto.Message)

func (*Repository) XXX_Size added in v0.9.0

func (m *Repository) XXX_Size() int

func (*Repository) XXX_Unmarshal added in v0.9.0

func (m *Repository) XXX_Unmarshal(b []byte) error

type RepositoryList

type RepositoryList struct {
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	Items           []Repository `json:"items" protobuf:"bytes,2,rep,name=items"`
}

RepositoryList is a collection of Repositories.

func (*RepositoryList) DeepCopy

func (in *RepositoryList) DeepCopy() *RepositoryList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryList.

func (*RepositoryList) DeepCopyInto

func (in *RepositoryList) DeepCopyInto(out *RepositoryList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RepositoryList) Descriptor

func (*RepositoryList) Descriptor() ([]byte, []int)

func (*RepositoryList) Marshal

func (m *RepositoryList) Marshal() (dAtA []byte, err error)

func (*RepositoryList) MarshalTo

func (m *RepositoryList) MarshalTo(dAtA []byte) (int, error)

func (*RepositoryList) ProtoMessage

func (*RepositoryList) ProtoMessage()

func (*RepositoryList) Reset

func (m *RepositoryList) Reset()

func (*RepositoryList) Size

func (m *RepositoryList) Size() (n int)

func (*RepositoryList) String

func (this *RepositoryList) String() string

func (*RepositoryList) Unmarshal

func (m *RepositoryList) Unmarshal(dAtA []byte) error

func (*RepositoryList) XXX_DiscardUnknown added in v0.9.0

func (m *RepositoryList) XXX_DiscardUnknown()

func (*RepositoryList) XXX_Marshal added in v0.9.0

func (m *RepositoryList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RepositoryList) XXX_Merge added in v0.9.0

func (dst *RepositoryList) XXX_Merge(src proto.Message)

func (*RepositoryList) XXX_Size added in v0.9.0

func (m *RepositoryList) XXX_Size() int

func (*RepositoryList) XXX_Unmarshal added in v0.9.0

func (m *RepositoryList) XXX_Unmarshal(b []byte) error

type ResourceAction added in v1.0.0

type ResourceAction struct {
	Name   string                `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	Params []ResourceActionParam `json:"params,omitempty" protobuf:"bytes,2,rep,name=params"`
}

func (*ResourceAction) DeepCopy added in v1.0.0

func (in *ResourceAction) DeepCopy() *ResourceAction

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceAction.

func (*ResourceAction) DeepCopyInto added in v1.0.0

func (in *ResourceAction) DeepCopyInto(out *ResourceAction)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceAction) Descriptor added in v1.0.0

func (*ResourceAction) Descriptor() ([]byte, []int)

func (*ResourceAction) Marshal added in v1.0.0

func (m *ResourceAction) Marshal() (dAtA []byte, err error)

func (*ResourceAction) MarshalTo added in v1.0.0

func (m *ResourceAction) MarshalTo(dAtA []byte) (int, error)

func (*ResourceAction) ProtoMessage added in v1.0.0

func (*ResourceAction) ProtoMessage()

func (*ResourceAction) Reset added in v1.0.0

func (m *ResourceAction) Reset()

func (*ResourceAction) Size added in v1.0.0

func (m *ResourceAction) Size() (n int)

func (*ResourceAction) String added in v1.0.0

func (this *ResourceAction) String() string

func (*ResourceAction) Unmarshal added in v1.0.0

func (m *ResourceAction) Unmarshal(dAtA []byte) error

func (*ResourceAction) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceAction) XXX_DiscardUnknown()

func (*ResourceAction) XXX_Marshal added in v1.0.0

func (m *ResourceAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceAction) XXX_Merge added in v1.0.0

func (dst *ResourceAction) XXX_Merge(src proto.Message)

func (*ResourceAction) XXX_Size added in v1.0.0

func (m *ResourceAction) XXX_Size() int

func (*ResourceAction) XXX_Unmarshal added in v1.0.0

func (m *ResourceAction) XXX_Unmarshal(b []byte) error

type ResourceActionDefinition added in v1.0.0

type ResourceActionDefinition struct {
	Name      string `json:"name" protobuf:"bytes,1,opt,name=name"`
	ActionLua string `json:"action.lua" yaml:"action.lua" protobuf:"bytes,2,opt,name=actionLua"`
}

func (*ResourceActionDefinition) DeepCopy added in v1.0.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceActionDefinition.

func (*ResourceActionDefinition) DeepCopyInto added in v1.0.0

func (in *ResourceActionDefinition) DeepCopyInto(out *ResourceActionDefinition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceActionDefinition) Descriptor added in v1.0.0

func (*ResourceActionDefinition) Descriptor() ([]byte, []int)

func (*ResourceActionDefinition) Marshal added in v1.0.0

func (m *ResourceActionDefinition) Marshal() (dAtA []byte, err error)

func (*ResourceActionDefinition) MarshalTo added in v1.0.0

func (m *ResourceActionDefinition) MarshalTo(dAtA []byte) (int, error)

func (*ResourceActionDefinition) ProtoMessage added in v1.0.0

func (*ResourceActionDefinition) ProtoMessage()

func (*ResourceActionDefinition) Reset added in v1.0.0

func (m *ResourceActionDefinition) Reset()

func (*ResourceActionDefinition) Size added in v1.0.0

func (m *ResourceActionDefinition) Size() (n int)

func (*ResourceActionDefinition) String added in v1.0.0

func (this *ResourceActionDefinition) String() string

func (*ResourceActionDefinition) Unmarshal added in v1.0.0

func (m *ResourceActionDefinition) Unmarshal(dAtA []byte) error

func (*ResourceActionDefinition) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceActionDefinition) XXX_DiscardUnknown()

func (*ResourceActionDefinition) XXX_Marshal added in v1.0.0

func (m *ResourceActionDefinition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceActionDefinition) XXX_Merge added in v1.0.0

func (dst *ResourceActionDefinition) XXX_Merge(src proto.Message)

func (*ResourceActionDefinition) XXX_Size added in v1.0.0

func (m *ResourceActionDefinition) XXX_Size() int

func (*ResourceActionDefinition) XXX_Unmarshal added in v1.0.0

func (m *ResourceActionDefinition) XXX_Unmarshal(b []byte) error

type ResourceActionParam added in v1.0.0

type ResourceActionParam struct {
	Name    string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	Value   string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
	Type    string `json:"type,omitempty" protobuf:"bytes,3,opt,name=type"`
	Default string `json:"default,omitempty" protobuf:"bytes,4,opt,name=default"`
}

func (*ResourceActionParam) DeepCopy added in v1.0.0

func (in *ResourceActionParam) DeepCopy() *ResourceActionParam

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceActionParam.

func (*ResourceActionParam) DeepCopyInto added in v1.0.0

func (in *ResourceActionParam) DeepCopyInto(out *ResourceActionParam)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceActionParam) Descriptor added in v1.0.0

func (*ResourceActionParam) Descriptor() ([]byte, []int)

func (*ResourceActionParam) Marshal added in v1.0.0

func (m *ResourceActionParam) Marshal() (dAtA []byte, err error)

func (*ResourceActionParam) MarshalTo added in v1.0.0

func (m *ResourceActionParam) MarshalTo(dAtA []byte) (int, error)

func (*ResourceActionParam) ProtoMessage added in v1.0.0

func (*ResourceActionParam) ProtoMessage()

func (*ResourceActionParam) Reset added in v1.0.0

func (m *ResourceActionParam) Reset()

func (*ResourceActionParam) Size added in v1.0.0

func (m *ResourceActionParam) Size() (n int)

func (*ResourceActionParam) String added in v1.0.0

func (this *ResourceActionParam) String() string

func (*ResourceActionParam) Unmarshal added in v1.0.0

func (m *ResourceActionParam) Unmarshal(dAtA []byte) error

func (*ResourceActionParam) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceActionParam) XXX_DiscardUnknown()

func (*ResourceActionParam) XXX_Marshal added in v1.0.0

func (m *ResourceActionParam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceActionParam) XXX_Merge added in v1.0.0

func (dst *ResourceActionParam) XXX_Merge(src proto.Message)

func (*ResourceActionParam) XXX_Size added in v1.0.0

func (m *ResourceActionParam) XXX_Size() int

func (*ResourceActionParam) XXX_Unmarshal added in v1.0.0

func (m *ResourceActionParam) XXX_Unmarshal(b []byte) error

type ResourceActions added in v1.0.0

type ResourceActions struct {
	ActionDiscoveryLua string                     `json:"discovery.lua,omitempty" yaml:"discovery.lua,omitempty" protobuf:"bytes,1,opt,name=actionDiscoveryLua"`
	Definitions        []ResourceActionDefinition `json:"definitions,omitEmpty" protobuf:"bytes,2,rep,name=definitions"`
}

func (*ResourceActions) DeepCopy added in v1.0.0

func (in *ResourceActions) DeepCopy() *ResourceActions

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceActions.

func (*ResourceActions) DeepCopyInto added in v1.0.0

func (in *ResourceActions) DeepCopyInto(out *ResourceActions)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceActions) Descriptor added in v1.0.0

func (*ResourceActions) Descriptor() ([]byte, []int)

func (*ResourceActions) Marshal added in v1.0.0

func (m *ResourceActions) Marshal() (dAtA []byte, err error)

func (*ResourceActions) MarshalTo added in v1.0.0

func (m *ResourceActions) MarshalTo(dAtA []byte) (int, error)

func (*ResourceActions) ProtoMessage added in v1.0.0

func (*ResourceActions) ProtoMessage()

func (*ResourceActions) Reset added in v1.0.0

func (m *ResourceActions) Reset()

func (*ResourceActions) Size added in v1.0.0

func (m *ResourceActions) Size() (n int)

func (*ResourceActions) String added in v1.0.0

func (this *ResourceActions) String() string

func (*ResourceActions) Unmarshal added in v1.0.0

func (m *ResourceActions) Unmarshal(dAtA []byte) error

func (*ResourceActions) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceActions) XXX_DiscardUnknown()

func (*ResourceActions) XXX_Marshal added in v1.0.0

func (m *ResourceActions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceActions) XXX_Merge added in v1.0.0

func (dst *ResourceActions) XXX_Merge(src proto.Message)

func (*ResourceActions) XXX_Size added in v1.0.0

func (m *ResourceActions) XXX_Size() int

func (*ResourceActions) XXX_Unmarshal added in v1.0.0

func (m *ResourceActions) XXX_Unmarshal(b []byte) error

type ResourceDiff added in v0.11.0

type ResourceDiff struct {
	Group       string `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"`
	Kind        string `json:"kind,omitempty" protobuf:"bytes,2,opt,name=kind"`
	Namespace   string `json:"namespace,omitempty" protobuf:"bytes,3,opt,name=namespace"`
	Name        string `json:"name,omitempty" protobuf:"bytes,4,opt,name=name"`
	TargetState string `json:"targetState,omitempty" protobuf:"bytes,5,opt,name=targetState"`
	LiveState   string `json:"liveState,omitempty" protobuf:"bytes,6,opt,name=liveState"`
	Diff        string `json:"diff,omitempty" protobuf:"bytes,7,opt,name=diff"`
}

ResourceDiff holds the diff of a live and target resource object

func (*ResourceDiff) DeepCopy added in v0.11.0

func (in *ResourceDiff) DeepCopy() *ResourceDiff

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceDiff.

func (*ResourceDiff) DeepCopyInto added in v0.11.0

func (in *ResourceDiff) DeepCopyInto(out *ResourceDiff)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceDiff) Descriptor added in v0.11.0

func (*ResourceDiff) Descriptor() ([]byte, []int)

func (ResourceDiff) LiveObject added in v0.11.0

func (r ResourceDiff) LiveObject() (*unstructured.Unstructured, error)

func (*ResourceDiff) Marshal added in v0.11.0

func (m *ResourceDiff) Marshal() (dAtA []byte, err error)

func (*ResourceDiff) MarshalTo added in v0.11.0

func (m *ResourceDiff) MarshalTo(dAtA []byte) (int, error)

func (*ResourceDiff) ProtoMessage added in v0.11.0

func (*ResourceDiff) ProtoMessage()

func (*ResourceDiff) Reset added in v0.11.0

func (m *ResourceDiff) Reset()

func (*ResourceDiff) Size added in v0.11.0

func (m *ResourceDiff) Size() (n int)

func (*ResourceDiff) String added in v0.11.0

func (this *ResourceDiff) String() string

func (ResourceDiff) TargetObject added in v0.11.0

func (r ResourceDiff) TargetObject() (*unstructured.Unstructured, error)

func (*ResourceDiff) Unmarshal added in v0.11.0

func (m *ResourceDiff) Unmarshal(dAtA []byte) error

func (*ResourceDiff) XXX_DiscardUnknown added in v0.11.0

func (m *ResourceDiff) XXX_DiscardUnknown()

func (*ResourceDiff) XXX_Marshal added in v0.11.0

func (m *ResourceDiff) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceDiff) XXX_Merge added in v0.11.0

func (dst *ResourceDiff) XXX_Merge(src proto.Message)

func (*ResourceDiff) XXX_Size added in v0.11.0

func (m *ResourceDiff) XXX_Size() int

func (*ResourceDiff) XXX_Unmarshal added in v0.11.0

func (m *ResourceDiff) XXX_Unmarshal(b []byte) error

type ResourceIgnoreDifferences added in v0.12.0

type ResourceIgnoreDifferences struct {
	Group        string   `json:"group" protobuf:"bytes,1,opt,name=group"`
	Kind         string   `json:"kind" protobuf:"bytes,2,opt,name=kind"`
	Name         string   `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"`
	Namespace    string   `json:"namespace,omitempty" protobuf:"bytes,4,opt,name=namespace"`
	JSONPointers []string `json:"jsonPointers" protobuf:"bytes,5,opt,name=jsonPointers"`
}

ResourceIgnoreDifferences contains resource filter and list of json paths which should be ignored during comparison with live state.

func (*ResourceIgnoreDifferences) DeepCopy added in v0.12.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceIgnoreDifferences.

func (*ResourceIgnoreDifferences) DeepCopyInto added in v0.12.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceIgnoreDifferences) Descriptor added in v0.12.0

func (*ResourceIgnoreDifferences) Descriptor() ([]byte, []int)

func (*ResourceIgnoreDifferences) Marshal added in v0.12.0

func (m *ResourceIgnoreDifferences) Marshal() (dAtA []byte, err error)

func (*ResourceIgnoreDifferences) MarshalTo added in v0.12.0

func (m *ResourceIgnoreDifferences) MarshalTo(dAtA []byte) (int, error)

func (*ResourceIgnoreDifferences) ProtoMessage added in v0.12.0

func (*ResourceIgnoreDifferences) ProtoMessage()

func (*ResourceIgnoreDifferences) Reset added in v0.12.0

func (m *ResourceIgnoreDifferences) Reset()

func (*ResourceIgnoreDifferences) Size added in v0.12.0

func (m *ResourceIgnoreDifferences) Size() (n int)

func (*ResourceIgnoreDifferences) String added in v0.12.0

func (this *ResourceIgnoreDifferences) String() string

func (*ResourceIgnoreDifferences) Unmarshal added in v0.12.0

func (m *ResourceIgnoreDifferences) Unmarshal(dAtA []byte) error

func (*ResourceIgnoreDifferences) XXX_DiscardUnknown added in v0.12.0

func (m *ResourceIgnoreDifferences) XXX_DiscardUnknown()

func (*ResourceIgnoreDifferences) XXX_Marshal added in v0.12.0

func (m *ResourceIgnoreDifferences) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceIgnoreDifferences) XXX_Merge added in v0.12.0

func (dst *ResourceIgnoreDifferences) XXX_Merge(src proto.Message)

func (*ResourceIgnoreDifferences) XXX_Size added in v0.12.0

func (m *ResourceIgnoreDifferences) XXX_Size() int

func (*ResourceIgnoreDifferences) XXX_Unmarshal added in v0.12.0

func (m *ResourceIgnoreDifferences) XXX_Unmarshal(b []byte) error

type ResourceNetworkingInfo added in v1.0.0

type ResourceNetworkingInfo struct {
	TargetLabels map[string]string        `json:"targetLabels,omitempty" protobuf:"bytes,1,opt,name=targetLabels"`
	TargetRefs   []ResourceRef            `json:"targetRefs,omitempty" protobuf:"bytes,2,opt,name=targetRefs"`
	Labels       map[string]string        `json:"labels,omitempty" protobuf:"bytes,3,opt,name=labels"`
	Ingress      []v1.LoadBalancerIngress `json:"ingress,omitempty" protobuf:"bytes,4,opt,name=ingress"`
	// ExternalURLs holds list of URLs which should be available externally. List is populated for ingress resources using rules hostnames.
	ExternalURLs []string `json:"externalURLs,omitempty" protobuf:"bytes,5,opt,name=externalURLs"`
}

ResourceNetworkingInfo holds networking resource related information

func (*ResourceNetworkingInfo) DeepCopy added in v1.0.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceNetworkingInfo.

func (*ResourceNetworkingInfo) DeepCopyInto added in v1.0.0

func (in *ResourceNetworkingInfo) DeepCopyInto(out *ResourceNetworkingInfo)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceNetworkingInfo) Descriptor added in v1.0.0

func (*ResourceNetworkingInfo) Descriptor() ([]byte, []int)

func (*ResourceNetworkingInfo) Marshal added in v1.0.0

func (m *ResourceNetworkingInfo) Marshal() (dAtA []byte, err error)

func (*ResourceNetworkingInfo) MarshalTo added in v1.0.0

func (m *ResourceNetworkingInfo) MarshalTo(dAtA []byte) (int, error)

func (*ResourceNetworkingInfo) ProtoMessage added in v1.0.0

func (*ResourceNetworkingInfo) ProtoMessage()

func (*ResourceNetworkingInfo) Reset added in v1.0.0

func (m *ResourceNetworkingInfo) Reset()

func (*ResourceNetworkingInfo) Size added in v1.0.0

func (m *ResourceNetworkingInfo) Size() (n int)

func (*ResourceNetworkingInfo) String added in v1.0.0

func (this *ResourceNetworkingInfo) String() string

func (*ResourceNetworkingInfo) Unmarshal added in v1.0.0

func (m *ResourceNetworkingInfo) Unmarshal(dAtA []byte) error

func (*ResourceNetworkingInfo) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceNetworkingInfo) XXX_DiscardUnknown()

func (*ResourceNetworkingInfo) XXX_Marshal added in v1.0.0

func (m *ResourceNetworkingInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceNetworkingInfo) XXX_Merge added in v1.0.0

func (dst *ResourceNetworkingInfo) XXX_Merge(src proto.Message)

func (*ResourceNetworkingInfo) XXX_Size added in v1.0.0

func (m *ResourceNetworkingInfo) XXX_Size() int

func (*ResourceNetworkingInfo) XXX_Unmarshal added in v1.0.0

func (m *ResourceNetworkingInfo) XXX_Unmarshal(b []byte) error

type ResourceNode added in v0.3.0

type ResourceNode struct {
	ResourceRef     `json:",inline" protobuf:"bytes,1,opt,name=resourceRef"`
	ParentRefs      []ResourceRef           `json:"parentRefs,omitempty" protobuf:"bytes,2,opt,name=parentRefs"`
	Info            []InfoItem              `json:"info,omitempty" protobuf:"bytes,3,opt,name=info"`
	NetworkingInfo  *ResourceNetworkingInfo `json:"networkingInfo,omitempty" protobuf:"bytes,4,opt,name=networkingInfo"`
	ResourceVersion string                  `json:"resourceVersion,omitempty" protobuf:"bytes,5,opt,name=resourceVersion"`
	Images          []string                `json:"images,omitempty" protobuf:"bytes,6,opt,name=images"`
	Health          *HealthStatus           `json:"health,omitempty" protobuf:"bytes,7,opt,name=health"`
}

ResourceNode contains information about live resource and its children

func (*ResourceNode) DeepCopy added in v0.3.0

func (in *ResourceNode) DeepCopy() *ResourceNode

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceNode.

func (*ResourceNode) DeepCopyInto added in v0.3.0

func (in *ResourceNode) DeepCopyInto(out *ResourceNode)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceNode) Descriptor added in v0.3.0

func (*ResourceNode) Descriptor() ([]byte, []int)

func (*ResourceNode) GroupKindVersion added in v0.11.0

func (n *ResourceNode) GroupKindVersion() schema.GroupVersionKind

func (*ResourceNode) Marshal added in v0.3.0

func (m *ResourceNode) Marshal() (dAtA []byte, err error)

func (*ResourceNode) MarshalTo added in v0.3.0

func (m *ResourceNode) MarshalTo(dAtA []byte) (int, error)

func (*ResourceNode) ProtoMessage added in v0.3.0

func (*ResourceNode) ProtoMessage()

func (*ResourceNode) Reset added in v0.3.0

func (m *ResourceNode) Reset()

func (*ResourceNode) Size added in v0.3.0

func (m *ResourceNode) Size() (n int)

func (*ResourceNode) String added in v0.3.0

func (this *ResourceNode) String() string

func (*ResourceNode) Unmarshal added in v0.3.0

func (m *ResourceNode) Unmarshal(dAtA []byte) error

func (*ResourceNode) XXX_DiscardUnknown added in v0.9.0

func (m *ResourceNode) XXX_DiscardUnknown()

func (*ResourceNode) XXX_Marshal added in v0.9.0

func (m *ResourceNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceNode) XXX_Merge added in v0.9.0

func (dst *ResourceNode) XXX_Merge(src proto.Message)

func (*ResourceNode) XXX_Size added in v0.9.0

func (m *ResourceNode) XXX_Size() int

func (*ResourceNode) XXX_Unmarshal added in v0.9.0

func (m *ResourceNode) XXX_Unmarshal(b []byte) error

type ResourceOverride added in v0.12.1

type ResourceOverride struct {
	HealthLua         string `json:"health.lua,omitempty" protobuf:"bytes,1,opt,name=healthLua"`
	Actions           string `json:"actions,omitempty" protobuf:"bytes,3,opt,name=actions"`
	IgnoreDifferences string `json:"ignoreDifferences,omitempty" protobuf:"bytes,2,opt,name=ignoreDifferences"`
}

ResourceOverride holds configuration to customize resource diffing and health assessment

func (*ResourceOverride) DeepCopy added in v0.12.1

func (in *ResourceOverride) DeepCopy() *ResourceOverride

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceOverride.

func (*ResourceOverride) DeepCopyInto added in v0.12.1

func (in *ResourceOverride) DeepCopyInto(out *ResourceOverride)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceOverride) Descriptor added in v0.12.1

func (*ResourceOverride) Descriptor() ([]byte, []int)

func (*ResourceOverride) GetActions added in v1.0.0

func (o *ResourceOverride) GetActions() (ResourceActions, error)

func (*ResourceOverride) Marshal added in v0.12.1

func (m *ResourceOverride) Marshal() (dAtA []byte, err error)

func (*ResourceOverride) MarshalTo added in v0.12.1

func (m *ResourceOverride) MarshalTo(dAtA []byte) (int, error)

func (*ResourceOverride) ProtoMessage added in v0.12.1

func (*ResourceOverride) ProtoMessage()

func (*ResourceOverride) Reset added in v0.12.1

func (m *ResourceOverride) Reset()

func (*ResourceOverride) Size added in v0.12.1

func (m *ResourceOverride) Size() (n int)

func (*ResourceOverride) String added in v0.12.1

func (this *ResourceOverride) String() string

func (*ResourceOverride) Unmarshal added in v0.12.1

func (m *ResourceOverride) Unmarshal(dAtA []byte) error

func (*ResourceOverride) XXX_DiscardUnknown added in v0.12.1

func (m *ResourceOverride) XXX_DiscardUnknown()

func (*ResourceOverride) XXX_Marshal added in v0.12.1

func (m *ResourceOverride) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceOverride) XXX_Merge added in v0.12.1

func (dst *ResourceOverride) XXX_Merge(src proto.Message)

func (*ResourceOverride) XXX_Size added in v0.12.1

func (m *ResourceOverride) XXX_Size() int

func (*ResourceOverride) XXX_Unmarshal added in v0.12.1

func (m *ResourceOverride) XXX_Unmarshal(b []byte) error

type ResourceRef added in v1.0.0

type ResourceRef struct {
	Group     string `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"`
	Version   string `json:"version,omitempty" protobuf:"bytes,2,opt,name=version"`
	Kind      string `json:"kind,omitempty" protobuf:"bytes,3,opt,name=kind"`
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,4,opt,name=namespace"`
	Name      string `json:"name,omitempty" protobuf:"bytes,5,opt,name=name"`
	UID       string `json:"uid,omitempty" protobuf:"bytes,6,opt,name=uid"`
}

ResourceRef includes fields which unique identify resource

func (*ResourceRef) DeepCopy added in v1.0.0

func (in *ResourceRef) DeepCopy() *ResourceRef

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceRef.

func (*ResourceRef) DeepCopyInto added in v1.0.0

func (in *ResourceRef) DeepCopyInto(out *ResourceRef)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceRef) Descriptor added in v1.0.0

func (*ResourceRef) Descriptor() ([]byte, []int)

func (*ResourceRef) Marshal added in v1.0.0

func (m *ResourceRef) Marshal() (dAtA []byte, err error)

func (*ResourceRef) MarshalTo added in v1.0.0

func (m *ResourceRef) MarshalTo(dAtA []byte) (int, error)

func (*ResourceRef) ProtoMessage added in v1.0.0

func (*ResourceRef) ProtoMessage()

func (*ResourceRef) Reset added in v1.0.0

func (m *ResourceRef) Reset()

func (*ResourceRef) Size added in v1.0.0

func (m *ResourceRef) Size() (n int)

func (*ResourceRef) String added in v1.0.0

func (this *ResourceRef) String() string

func (*ResourceRef) Unmarshal added in v1.0.0

func (m *ResourceRef) Unmarshal(dAtA []byte) error

func (*ResourceRef) XXX_DiscardUnknown added in v1.0.0

func (m *ResourceRef) XXX_DiscardUnknown()

func (*ResourceRef) XXX_Marshal added in v1.0.0

func (m *ResourceRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceRef) XXX_Merge added in v1.0.0

func (dst *ResourceRef) XXX_Merge(src proto.Message)

func (*ResourceRef) XXX_Size added in v1.0.0

func (m *ResourceRef) XXX_Size() int

func (*ResourceRef) XXX_Unmarshal added in v1.0.0

func (m *ResourceRef) XXX_Unmarshal(b []byte) error

type ResourceResult added in v0.11.0

type ResourceResult struct {
	Group     string `json:"group" protobuf:"bytes,1,opt,name=group"`
	Version   string `json:"version" protobuf:"bytes,2,opt,name=version"`
	Kind      string `json:"kind" protobuf:"bytes,3,opt,name=kind"`
	Namespace string `json:"namespace" protobuf:"bytes,4,opt,name=namespace"`
	Name      string `json:"name" protobuf:"bytes,5,opt,name=name"`
	// the final result of the sync, this is be empty if the resources is yet to be applied/pruned and is always zero-value for hooks
	Status ResultCode `json:"status,omitempty" protobuf:"bytes,6,opt,name=status"`
	// message for the last sync OR operation
	Message string `json:"message,omitempty" protobuf:"bytes,7,opt,name=message"`
	// the type of the hook, empty for non-hook resources
	HookType HookType `json:"hookType,omitempty" protobuf:"bytes,8,opt,name=hookType"`
	// the state of any operation associated with this resource OR hook
	// note: can contain values for non-hook resources
	HookPhase OperationPhase `json:"hookPhase,omitempty" protobuf:"bytes,9,opt,name=hookPhase"`
	// indicates the particular phase of the sync that this is for
	SyncPhase SyncPhase `json:"syncPhase,omitempty" protobuf:"bytes,10,opt,name=syncPhase"`
}

ResourceResult holds the operation result details of a specific resource

func (*ResourceResult) DeepCopy added in v0.11.0

func (in *ResourceResult) DeepCopy() *ResourceResult

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceResult.

func (*ResourceResult) DeepCopyInto added in v0.11.0

func (in *ResourceResult) DeepCopyInto(out *ResourceResult)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceResult) Descriptor added in v0.11.0

func (*ResourceResult) Descriptor() ([]byte, []int)

func (*ResourceResult) GroupVersionKind added in v0.11.0

func (r *ResourceResult) GroupVersionKind() schema.GroupVersionKind

func (*ResourceResult) Marshal added in v0.11.0

func (m *ResourceResult) Marshal() (dAtA []byte, err error)

func (*ResourceResult) MarshalTo added in v0.11.0

func (m *ResourceResult) MarshalTo(dAtA []byte) (int, error)

func (*ResourceResult) ProtoMessage added in v0.11.0

func (*ResourceResult) ProtoMessage()

func (*ResourceResult) Reset added in v0.11.0

func (m *ResourceResult) Reset()

func (*ResourceResult) Size added in v0.11.0

func (m *ResourceResult) Size() (n int)

func (*ResourceResult) String added in v0.11.0

func (this *ResourceResult) String() string

func (*ResourceResult) Unmarshal added in v0.11.0

func (m *ResourceResult) Unmarshal(dAtA []byte) error

func (*ResourceResult) XXX_DiscardUnknown added in v0.11.0

func (m *ResourceResult) XXX_DiscardUnknown()

func (*ResourceResult) XXX_Marshal added in v0.11.0

func (m *ResourceResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceResult) XXX_Merge added in v0.11.0

func (dst *ResourceResult) XXX_Merge(src proto.Message)

func (*ResourceResult) XXX_Size added in v0.11.0

func (m *ResourceResult) XXX_Size() int

func (*ResourceResult) XXX_Unmarshal added in v0.11.0

func (m *ResourceResult) XXX_Unmarshal(b []byte) error

type ResourceResults added in v1.1.0

type ResourceResults []*ResourceResult

func (ResourceResults) DeepCopy added in v1.1.0

func (in ResourceResults) DeepCopy() ResourceResults

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceResults.

func (ResourceResults) DeepCopyInto added in v1.1.0

func (in ResourceResults) DeepCopyInto(out *ResourceResults)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (ResourceResults) Filter added in v1.1.0

func (r ResourceResults) Filter(predicate func(r *ResourceResult) bool) ResourceResults

func (ResourceResults) Find added in v1.1.0

func (r ResourceResults) Find(group string, kind string, namespace string, name string, phase SyncPhase) (int, *ResourceResult)

func (ResourceResults) PruningRequired added in v1.1.0

func (r ResourceResults) PruningRequired() (num int)

type ResourceStatus added in v0.11.0

type ResourceStatus struct {
	Group     string         `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"`
	Version   string         `json:"version,omitempty" protobuf:"bytes,2,opt,name=version"`
	Kind      string         `json:"kind,omitempty" protobuf:"bytes,3,opt,name=kind"`
	Namespace string         `json:"namespace,omitempty" protobuf:"bytes,4,opt,name=namespace"`
	Name      string         `json:"name,omitempty" protobuf:"bytes,5,opt,name=name"`
	Status    SyncStatusCode `json:"status,omitempty" protobuf:"bytes,6,opt,name=status"`
	Health    *HealthStatus  `json:"health,omitempty" protobuf:"bytes,7,opt,name=health"`
	Hook      bool           `json:"hook,omitempty" protobuf:"bytes,8,opt,name=hook"`
}

ResourceStatus holds the current sync and health status of a resource

func (*ResourceStatus) DeepCopy added in v0.11.0

func (in *ResourceStatus) DeepCopy() *ResourceStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceStatus.

func (*ResourceStatus) DeepCopyInto added in v0.11.0

func (in *ResourceStatus) DeepCopyInto(out *ResourceStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ResourceStatus) Descriptor added in v0.11.0

func (*ResourceStatus) Descriptor() ([]byte, []int)

func (*ResourceStatus) GroupVersionKind added in v0.11.0

func (r *ResourceStatus) GroupVersionKind() schema.GroupVersionKind

func (*ResourceStatus) Marshal added in v0.11.0

func (m *ResourceStatus) Marshal() (dAtA []byte, err error)

func (*ResourceStatus) MarshalTo added in v0.11.0

func (m *ResourceStatus) MarshalTo(dAtA []byte) (int, error)

func (*ResourceStatus) ProtoMessage added in v0.11.0

func (*ResourceStatus) ProtoMessage()

func (*ResourceStatus) Reset added in v0.11.0

func (m *ResourceStatus) Reset()

func (*ResourceStatus) Size added in v0.11.0

func (m *ResourceStatus) Size() (n int)

func (*ResourceStatus) String added in v0.11.0

func (this *ResourceStatus) String() string

func (*ResourceStatus) Unmarshal added in v0.11.0

func (m *ResourceStatus) Unmarshal(dAtA []byte) error

func (*ResourceStatus) XXX_DiscardUnknown added in v0.11.0

func (m *ResourceStatus) XXX_DiscardUnknown()

func (*ResourceStatus) XXX_Marshal added in v0.11.0

func (m *ResourceStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResourceStatus) XXX_Merge added in v0.11.0

func (dst *ResourceStatus) XXX_Merge(src proto.Message)

func (*ResourceStatus) XXX_Size added in v0.11.0

func (m *ResourceStatus) XXX_Size() int

func (*ResourceStatus) XXX_Unmarshal added in v0.11.0

func (m *ResourceStatus) XXX_Unmarshal(b []byte) error

type ResultCode added in v0.11.0

type ResultCode string
const (
	ResultCodeSynced       ResultCode = "Synced"
	ResultCodeSyncFailed   ResultCode = "SyncFailed"
	ResultCodePruned       ResultCode = "Pruned"
	ResultCodePruneSkipped ResultCode = "PruneSkipped"
)

type RevisionHistory added in v0.11.0

type RevisionHistory struct {
	Revision   string            `json:"revision" protobuf:"bytes,2,opt,name=revision"`
	DeployedAt metav1.Time       `json:"deployedAt" protobuf:"bytes,4,opt,name=deployedAt"`
	ID         int64             `json:"id" protobuf:"bytes,5,opt,name=id"`
	Source     ApplicationSource `json:"source,omitempty" protobuf:"bytes,6,opt,name=source"`
}

RevisionHistory contains information relevant to an application deployment

func (*RevisionHistory) DeepCopy added in v0.11.0

func (in *RevisionHistory) DeepCopy() *RevisionHistory

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevisionHistory.

func (*RevisionHistory) DeepCopyInto added in v0.11.0

func (in *RevisionHistory) DeepCopyInto(out *RevisionHistory)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RevisionHistory) Descriptor added in v0.11.0

func (*RevisionHistory) Descriptor() ([]byte, []int)

func (*RevisionHistory) Marshal added in v0.11.0

func (m *RevisionHistory) Marshal() (dAtA []byte, err error)

func (*RevisionHistory) MarshalTo added in v0.11.0

func (m *RevisionHistory) MarshalTo(dAtA []byte) (int, error)

func (*RevisionHistory) ProtoMessage added in v0.11.0

func (*RevisionHistory) ProtoMessage()

func (*RevisionHistory) Reset added in v0.11.0

func (m *RevisionHistory) Reset()

func (*RevisionHistory) Size added in v0.11.0

func (m *RevisionHistory) Size() (n int)

func (*RevisionHistory) String added in v0.11.0

func (this *RevisionHistory) String() string

func (*RevisionHistory) Unmarshal added in v0.11.0

func (m *RevisionHistory) Unmarshal(dAtA []byte) error

func (*RevisionHistory) XXX_DiscardUnknown added in v0.11.0

func (m *RevisionHistory) XXX_DiscardUnknown()

func (*RevisionHistory) XXX_Marshal added in v0.11.0

func (m *RevisionHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RevisionHistory) XXX_Merge added in v0.11.0

func (dst *RevisionHistory) XXX_Merge(src proto.Message)

func (*RevisionHistory) XXX_Size added in v0.11.0

func (m *RevisionHistory) XXX_Size() int

func (*RevisionHistory) XXX_Unmarshal added in v0.11.0

func (m *RevisionHistory) XXX_Unmarshal(b []byte) error

type SyncOperation added in v0.4.0

type SyncOperation struct {
	// Revision is the git revision in which to sync the application to.
	// If omitted, will use the revision specified in app spec.
	Revision string `json:"revision,omitempty" protobuf:"bytes,1,opt,name=revision"`
	// Prune deletes resources that are no longer tracked in git
	Prune bool `json:"prune,omitempty" protobuf:"bytes,2,opt,name=prune"`
	// DryRun will perform a `kubectl apply --dry-run` without actually performing the sync
	DryRun bool `json:"dryRun,omitempty" protobuf:"bytes,3,opt,name=dryRun"`
	// SyncStrategy describes how to perform the sync
	SyncStrategy *SyncStrategy `json:"syncStrategy,omitempty" protobuf:"bytes,4,opt,name=syncStrategy"`
	// Resources describes which resources to sync
	Resources []SyncOperationResource `json:"resources,omitempty" protobuf:"bytes,6,opt,name=resources"`
	// Source overrides the source definition set in the application.
	// This is typically set in a Rollback operation and nil during a Sync operation
	Source *ApplicationSource `json:"source,omitempty" protobuf:"bytes,7,opt,name=source"`
	// Manifests is an optional field that overrides sync source with a local directory for development
	Manifests []string `json:"manifests,omitempty" protobuf:"bytes,8,opt,name=manifests"`
}

SyncOperation contains sync operation details.

func (*SyncOperation) DeepCopy added in v0.4.0

func (in *SyncOperation) DeepCopy() *SyncOperation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncOperation.

func (*SyncOperation) DeepCopyInto added in v0.4.0

func (in *SyncOperation) DeepCopyInto(out *SyncOperation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncOperation) Descriptor added in v0.4.0

func (*SyncOperation) Descriptor() ([]byte, []int)

func (*SyncOperation) IsApplyStrategy added in v1.1.0

func (o *SyncOperation) IsApplyStrategy() bool

func (*SyncOperation) Marshal added in v0.4.0

func (m *SyncOperation) Marshal() (dAtA []byte, err error)

func (*SyncOperation) MarshalTo added in v0.4.0

func (m *SyncOperation) MarshalTo(dAtA []byte) (int, error)

func (*SyncOperation) ProtoMessage added in v0.4.0

func (*SyncOperation) ProtoMessage()

func (*SyncOperation) Reset added in v0.4.0

func (m *SyncOperation) Reset()

func (*SyncOperation) Size added in v0.4.0

func (m *SyncOperation) Size() (n int)

func (*SyncOperation) String added in v0.4.0

func (this *SyncOperation) String() string

func (*SyncOperation) Unmarshal added in v0.4.0

func (m *SyncOperation) Unmarshal(dAtA []byte) error

func (*SyncOperation) XXX_DiscardUnknown added in v0.9.0

func (m *SyncOperation) XXX_DiscardUnknown()

func (*SyncOperation) XXX_Marshal added in v0.9.0

func (m *SyncOperation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncOperation) XXX_Merge added in v0.9.0

func (dst *SyncOperation) XXX_Merge(src proto.Message)

func (*SyncOperation) XXX_Size added in v0.9.0

func (m *SyncOperation) XXX_Size() int

func (*SyncOperation) XXX_Unmarshal added in v0.9.0

func (m *SyncOperation) XXX_Unmarshal(b []byte) error

type SyncOperationResource added in v0.10.0

type SyncOperationResource struct {
	Group string `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"`
	Kind  string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
	Name  string `json:"name" protobuf:"bytes,3,opt,name=name"`
}

SyncOperationResource contains resources to sync.

func (*SyncOperationResource) DeepCopy added in v0.10.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncOperationResource.

func (*SyncOperationResource) DeepCopyInto added in v0.10.0

func (in *SyncOperationResource) DeepCopyInto(out *SyncOperationResource)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncOperationResource) Descriptor added in v0.10.0

func (*SyncOperationResource) Descriptor() ([]byte, []int)

func (SyncOperationResource) HasIdentity added in v0.10.0

func (r SyncOperationResource) HasIdentity(name string, gvk schema.GroupVersionKind) bool

HasIdentity determines whether a sync operation is identified by a manifest.

func (*SyncOperationResource) Marshal added in v0.10.0

func (m *SyncOperationResource) Marshal() (dAtA []byte, err error)

func (*SyncOperationResource) MarshalTo added in v0.10.0

func (m *SyncOperationResource) MarshalTo(dAtA []byte) (int, error)

func (*SyncOperationResource) ProtoMessage added in v0.10.0

func (*SyncOperationResource) ProtoMessage()

func (*SyncOperationResource) Reset added in v0.10.0

func (m *SyncOperationResource) Reset()

func (*SyncOperationResource) Size added in v0.10.0

func (m *SyncOperationResource) Size() (n int)

func (*SyncOperationResource) String added in v0.10.0

func (this *SyncOperationResource) String() string

func (*SyncOperationResource) Unmarshal added in v0.10.0

func (m *SyncOperationResource) Unmarshal(dAtA []byte) error

func (*SyncOperationResource) XXX_DiscardUnknown added in v0.10.0

func (m *SyncOperationResource) XXX_DiscardUnknown()

func (*SyncOperationResource) XXX_Marshal added in v0.10.0

func (m *SyncOperationResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncOperationResource) XXX_Merge added in v0.10.0

func (dst *SyncOperationResource) XXX_Merge(src proto.Message)

func (*SyncOperationResource) XXX_Size added in v0.10.0

func (m *SyncOperationResource) XXX_Size() int

func (*SyncOperationResource) XXX_Unmarshal added in v0.10.0

func (m *SyncOperationResource) XXX_Unmarshal(b []byte) error

type SyncOperationResult added in v0.4.0

type SyncOperationResult struct {
	// Resources holds the sync result of each individual resource
	Resources ResourceResults `json:"resources,omitempty" protobuf:"bytes,1,opt,name=resources"`
	// Revision holds the git commit SHA of the sync
	Revision string `json:"revision" protobuf:"bytes,2,opt,name=revision"`
	// Source records the application source information of the sync, used for comparing auto-sync
	Source ApplicationSource `json:"source,omitempty" protobuf:"bytes,3,opt,name=source"`
}

SyncOperationResult represent result of sync operation

func (*SyncOperationResult) DeepCopy added in v0.4.0

func (in *SyncOperationResult) DeepCopy() *SyncOperationResult

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncOperationResult.

func (*SyncOperationResult) DeepCopyInto added in v0.4.0

func (in *SyncOperationResult) DeepCopyInto(out *SyncOperationResult)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncOperationResult) Descriptor added in v0.4.0

func (*SyncOperationResult) Descriptor() ([]byte, []int)

func (*SyncOperationResult) Marshal added in v0.4.0

func (m *SyncOperationResult) Marshal() (dAtA []byte, err error)

func (*SyncOperationResult) MarshalTo added in v0.4.0

func (m *SyncOperationResult) MarshalTo(dAtA []byte) (int, error)

func (*SyncOperationResult) ProtoMessage added in v0.4.0

func (*SyncOperationResult) ProtoMessage()

func (*SyncOperationResult) Reset added in v0.4.0

func (m *SyncOperationResult) Reset()

func (*SyncOperationResult) Size added in v0.4.0

func (m *SyncOperationResult) Size() (n int)

func (*SyncOperationResult) String added in v0.4.0

func (this *SyncOperationResult) String() string

func (*SyncOperationResult) Unmarshal added in v0.4.0

func (m *SyncOperationResult) Unmarshal(dAtA []byte) error

func (*SyncOperationResult) XXX_DiscardUnknown added in v0.9.0

func (m *SyncOperationResult) XXX_DiscardUnknown()

func (*SyncOperationResult) XXX_Marshal added in v0.9.0

func (m *SyncOperationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncOperationResult) XXX_Merge added in v0.9.0

func (dst *SyncOperationResult) XXX_Merge(src proto.Message)

func (*SyncOperationResult) XXX_Size added in v0.9.0

func (m *SyncOperationResult) XXX_Size() int

func (*SyncOperationResult) XXX_Unmarshal added in v0.9.0

func (m *SyncOperationResult) XXX_Unmarshal(b []byte) error

type SyncPhase added in v1.1.0

type SyncPhase = string

type SyncPolicy added in v0.9.0

type SyncPolicy struct {
	// Automated will keep an application synced to the target revision
	Automated *SyncPolicyAutomated `json:"automated,omitempty" protobuf:"bytes,1,opt,name=automated"`
}

SyncPolicy controls when a sync will be performed in response to updates in git

func (*SyncPolicy) DeepCopy added in v0.9.0

func (in *SyncPolicy) DeepCopy() *SyncPolicy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncPolicy.

func (*SyncPolicy) DeepCopyInto added in v0.9.0

func (in *SyncPolicy) DeepCopyInto(out *SyncPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncPolicy) Descriptor added in v0.9.0

func (*SyncPolicy) Descriptor() ([]byte, []int)

func (*SyncPolicy) Marshal added in v0.9.0

func (m *SyncPolicy) Marshal() (dAtA []byte, err error)

func (*SyncPolicy) MarshalTo added in v0.9.0

func (m *SyncPolicy) MarshalTo(dAtA []byte) (int, error)

func (*SyncPolicy) ProtoMessage added in v0.9.0

func (*SyncPolicy) ProtoMessage()

func (*SyncPolicy) Reset added in v0.9.0

func (m *SyncPolicy) Reset()

func (*SyncPolicy) Size added in v0.9.0

func (m *SyncPolicy) Size() (n int)

func (*SyncPolicy) String added in v0.9.0

func (this *SyncPolicy) String() string

func (*SyncPolicy) Unmarshal added in v0.9.0

func (m *SyncPolicy) Unmarshal(dAtA []byte) error

func (*SyncPolicy) XXX_DiscardUnknown added in v0.9.0

func (m *SyncPolicy) XXX_DiscardUnknown()

func (*SyncPolicy) XXX_Marshal added in v0.9.0

func (m *SyncPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncPolicy) XXX_Merge added in v0.9.0

func (dst *SyncPolicy) XXX_Merge(src proto.Message)

func (*SyncPolicy) XXX_Size added in v0.9.0

func (m *SyncPolicy) XXX_Size() int

func (*SyncPolicy) XXX_Unmarshal added in v0.9.0

func (m *SyncPolicy) XXX_Unmarshal(b []byte) error

type SyncPolicyAutomated added in v0.9.0

type SyncPolicyAutomated struct {
	// Prune will prune resources automatically as part of automated sync (default: false)
	Prune bool `json:"prune,omitempty" protobuf:"bytes,1,opt,name=prune"`
}

SyncPolicyAutomated controls the behavior of an automated sync

func (*SyncPolicyAutomated) DeepCopy added in v0.9.0

func (in *SyncPolicyAutomated) DeepCopy() *SyncPolicyAutomated

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncPolicyAutomated.

func (*SyncPolicyAutomated) DeepCopyInto added in v0.9.0

func (in *SyncPolicyAutomated) DeepCopyInto(out *SyncPolicyAutomated)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncPolicyAutomated) Descriptor added in v0.9.0

func (*SyncPolicyAutomated) Descriptor() ([]byte, []int)

func (*SyncPolicyAutomated) Marshal added in v0.9.0

func (m *SyncPolicyAutomated) Marshal() (dAtA []byte, err error)

func (*SyncPolicyAutomated) MarshalTo added in v0.9.0

func (m *SyncPolicyAutomated) MarshalTo(dAtA []byte) (int, error)

func (*SyncPolicyAutomated) ProtoMessage added in v0.9.0

func (*SyncPolicyAutomated) ProtoMessage()

func (*SyncPolicyAutomated) Reset added in v0.9.0

func (m *SyncPolicyAutomated) Reset()

func (*SyncPolicyAutomated) Size added in v0.9.0

func (m *SyncPolicyAutomated) Size() (n int)

func (*SyncPolicyAutomated) String added in v0.9.0

func (this *SyncPolicyAutomated) String() string

func (*SyncPolicyAutomated) Unmarshal added in v0.9.0

func (m *SyncPolicyAutomated) Unmarshal(dAtA []byte) error

func (*SyncPolicyAutomated) XXX_DiscardUnknown added in v0.9.0

func (m *SyncPolicyAutomated) XXX_DiscardUnknown()

func (*SyncPolicyAutomated) XXX_Marshal added in v0.9.0

func (m *SyncPolicyAutomated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncPolicyAutomated) XXX_Merge added in v0.9.0

func (dst *SyncPolicyAutomated) XXX_Merge(src proto.Message)

func (*SyncPolicyAutomated) XXX_Size added in v0.9.0

func (m *SyncPolicyAutomated) XXX_Size() int

func (*SyncPolicyAutomated) XXX_Unmarshal added in v0.9.0

func (m *SyncPolicyAutomated) XXX_Unmarshal(b []byte) error

type SyncStatus added in v0.11.0

type SyncStatus struct {
	Status     SyncStatusCode `json:"status" protobuf:"bytes,1,opt,name=status,casttype=SyncStatusCode"`
	ComparedTo ComparedTo     `json:"comparedTo,omitempty" protobuf:"bytes,2,opt,name=comparedTo"`
	Revision   string         `json:"revision,omitempty" protobuf:"bytes,3,opt,name=revision"`
}

SyncStatus is a comparison result of application spec and deployed application.

func (*SyncStatus) DeepCopy added in v0.11.0

func (in *SyncStatus) DeepCopy() *SyncStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncStatus.

func (*SyncStatus) DeepCopyInto added in v0.11.0

func (in *SyncStatus) DeepCopyInto(out *SyncStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncStatus) Descriptor added in v0.11.0

func (*SyncStatus) Descriptor() ([]byte, []int)

func (*SyncStatus) Marshal added in v0.11.0

func (m *SyncStatus) Marshal() (dAtA []byte, err error)

func (*SyncStatus) MarshalTo added in v0.11.0

func (m *SyncStatus) MarshalTo(dAtA []byte) (int, error)

func (*SyncStatus) ProtoMessage added in v0.11.0

func (*SyncStatus) ProtoMessage()

func (*SyncStatus) Reset added in v0.11.0

func (m *SyncStatus) Reset()

func (*SyncStatus) Size added in v0.11.0

func (m *SyncStatus) Size() (n int)

func (*SyncStatus) String added in v0.11.0

func (this *SyncStatus) String() string

func (*SyncStatus) Unmarshal added in v0.11.0

func (m *SyncStatus) Unmarshal(dAtA []byte) error

func (*SyncStatus) XXX_DiscardUnknown added in v0.11.0

func (m *SyncStatus) XXX_DiscardUnknown()

func (*SyncStatus) XXX_Marshal added in v0.11.0

func (m *SyncStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncStatus) XXX_Merge added in v0.11.0

func (dst *SyncStatus) XXX_Merge(src proto.Message)

func (*SyncStatus) XXX_Size added in v0.11.0

func (m *SyncStatus) XXX_Size() int

func (*SyncStatus) XXX_Unmarshal added in v0.11.0

func (m *SyncStatus) XXX_Unmarshal(b []byte) error

type SyncStatusCode added in v0.11.0

type SyncStatusCode string

SyncStatusCode is a type which represents possible comparison results

const (
	SyncStatusCodeUnknown   SyncStatusCode = "Unknown"
	SyncStatusCodeSynced    SyncStatusCode = "Synced"
	SyncStatusCodeOutOfSync SyncStatusCode = "OutOfSync"
)

Possible comparison results

type SyncStrategy added in v0.6.0

type SyncStrategy struct {
	// Apply wil perform a `kubectl apply` to perform the sync.
	Apply *SyncStrategyApply `json:"apply,omitempty" protobuf:"bytes,1,opt,name=apply"`
	// Hook will submit any referenced resources to perform the sync. This is the default strategy
	Hook *SyncStrategyHook `json:"hook,omitempty" protobuf:"bytes,2,opt,name=hook"`
}

SyncStrategy controls the manner in which a sync is performed

func (*SyncStrategy) DeepCopy added in v0.6.0

func (in *SyncStrategy) DeepCopy() *SyncStrategy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncStrategy.

func (*SyncStrategy) DeepCopyInto added in v0.6.0

func (in *SyncStrategy) DeepCopyInto(out *SyncStrategy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncStrategy) Descriptor added in v0.6.0

func (*SyncStrategy) Descriptor() ([]byte, []int)

func (*SyncStrategy) Force added in v1.1.0

func (m *SyncStrategy) Force() bool

func (*SyncStrategy) Marshal added in v0.6.0

func (m *SyncStrategy) Marshal() (dAtA []byte, err error)

func (*SyncStrategy) MarshalTo added in v0.6.0

func (m *SyncStrategy) MarshalTo(dAtA []byte) (int, error)

func (*SyncStrategy) ProtoMessage added in v0.6.0

func (*SyncStrategy) ProtoMessage()

func (*SyncStrategy) Reset added in v0.6.0

func (m *SyncStrategy) Reset()

func (*SyncStrategy) Size added in v0.6.0

func (m *SyncStrategy) Size() (n int)

func (*SyncStrategy) String added in v0.6.0

func (this *SyncStrategy) String() string

func (*SyncStrategy) Unmarshal added in v0.6.0

func (m *SyncStrategy) Unmarshal(dAtA []byte) error

func (*SyncStrategy) XXX_DiscardUnknown added in v0.9.0

func (m *SyncStrategy) XXX_DiscardUnknown()

func (*SyncStrategy) XXX_Marshal added in v0.9.0

func (m *SyncStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncStrategy) XXX_Merge added in v0.9.0

func (dst *SyncStrategy) XXX_Merge(src proto.Message)

func (*SyncStrategy) XXX_Size added in v0.9.0

func (m *SyncStrategy) XXX_Size() int

func (*SyncStrategy) XXX_Unmarshal added in v0.9.0

func (m *SyncStrategy) XXX_Unmarshal(b []byte) error

type SyncStrategyApply added in v0.6.0

type SyncStrategyApply struct {
	// Force indicates whether or not to supply the --force flag to `kubectl apply`.
	// The --force flag deletes and re-create the resource, when PATCH encounters conflict and has
	// retried for 5 times.
	Force bool `json:"force,omitempty" protobuf:"bytes,1,opt,name=force"`
}

SyncStrategyApply uses `kubectl apply` to perform the apply

func (*SyncStrategyApply) DeepCopy added in v0.6.0

func (in *SyncStrategyApply) DeepCopy() *SyncStrategyApply

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncStrategyApply.

func (*SyncStrategyApply) DeepCopyInto added in v0.6.0

func (in *SyncStrategyApply) DeepCopyInto(out *SyncStrategyApply)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncStrategyApply) Descriptor added in v0.6.0

func (*SyncStrategyApply) Descriptor() ([]byte, []int)

func (*SyncStrategyApply) Marshal added in v0.6.0

func (m *SyncStrategyApply) Marshal() (dAtA []byte, err error)

func (*SyncStrategyApply) MarshalTo added in v0.6.0

func (m *SyncStrategyApply) MarshalTo(dAtA []byte) (int, error)

func (*SyncStrategyApply) ProtoMessage added in v0.6.0

func (*SyncStrategyApply) ProtoMessage()

func (*SyncStrategyApply) Reset added in v0.6.0

func (m *SyncStrategyApply) Reset()

func (*SyncStrategyApply) Size added in v0.6.0

func (m *SyncStrategyApply) Size() (n int)

func (*SyncStrategyApply) String added in v0.6.0

func (this *SyncStrategyApply) String() string

func (*SyncStrategyApply) Unmarshal added in v0.6.0

func (m *SyncStrategyApply) Unmarshal(dAtA []byte) error

func (*SyncStrategyApply) XXX_DiscardUnknown added in v0.9.0

func (m *SyncStrategyApply) XXX_DiscardUnknown()

func (*SyncStrategyApply) XXX_Marshal added in v0.9.0

func (m *SyncStrategyApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncStrategyApply) XXX_Merge added in v0.9.0

func (dst *SyncStrategyApply) XXX_Merge(src proto.Message)

func (*SyncStrategyApply) XXX_Size added in v0.9.0

func (m *SyncStrategyApply) XXX_Size() int

func (*SyncStrategyApply) XXX_Unmarshal added in v0.9.0

func (m *SyncStrategyApply) XXX_Unmarshal(b []byte) error

type SyncStrategyHook added in v0.6.0

type SyncStrategyHook struct {
	// Embed SyncStrategyApply type to inherit any `apply` options
	// +optional
	SyncStrategyApply `protobuf:"bytes,1,opt,name=syncStrategyApply"`
}

SyncStrategyHook will perform a sync using hooks annotations. If no hook annotation is specified falls back to `kubectl apply`.

func (*SyncStrategyHook) DeepCopy added in v0.6.0

func (in *SyncStrategyHook) DeepCopy() *SyncStrategyHook

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyncStrategyHook.

func (*SyncStrategyHook) DeepCopyInto added in v0.6.0

func (in *SyncStrategyHook) DeepCopyInto(out *SyncStrategyHook)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SyncStrategyHook) Descriptor added in v0.6.0

func (*SyncStrategyHook) Descriptor() ([]byte, []int)

func (*SyncStrategyHook) Marshal added in v0.6.0

func (m *SyncStrategyHook) Marshal() (dAtA []byte, err error)

func (*SyncStrategyHook) MarshalTo added in v0.6.0

func (m *SyncStrategyHook) MarshalTo(dAtA []byte) (int, error)

func (*SyncStrategyHook) ProtoMessage added in v0.6.0

func (*SyncStrategyHook) ProtoMessage()

func (*SyncStrategyHook) Reset added in v0.6.0

func (m *SyncStrategyHook) Reset()

func (*SyncStrategyHook) Size added in v0.6.0

func (m *SyncStrategyHook) Size() (n int)

func (*SyncStrategyHook) String added in v0.6.0

func (this *SyncStrategyHook) String() string

func (*SyncStrategyHook) Unmarshal added in v0.6.0

func (m *SyncStrategyHook) Unmarshal(dAtA []byte) error

func (*SyncStrategyHook) XXX_DiscardUnknown added in v0.9.0

func (m *SyncStrategyHook) XXX_DiscardUnknown()

func (*SyncStrategyHook) XXX_Marshal added in v0.9.0

func (m *SyncStrategyHook) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncStrategyHook) XXX_Merge added in v0.9.0

func (dst *SyncStrategyHook) XXX_Merge(src proto.Message)

func (*SyncStrategyHook) XXX_Size added in v0.9.0

func (m *SyncStrategyHook) XXX_Size() int

func (*SyncStrategyHook) XXX_Unmarshal added in v0.9.0

func (m *SyncStrategyHook) XXX_Unmarshal(b []byte) error

type TLSClientConfig

type TLSClientConfig struct {
	// Server should be accessed without verifying the TLS certificate. For testing only.
	Insecure bool `json:"insecure" protobuf:"bytes,1,opt,name=insecure"`
	// ServerName is passed to the server for SNI and is used in the client to check server
	// certificates against. If ServerName is empty, the hostname used to contact the
	// server is used.
	ServerName string `json:"serverName,omitempty" protobuf:"bytes,2,opt,name=serverName"`
	// CertData holds PEM-encoded bytes (typically read from a client certificate file).
	// CertData takes precedence over CertFile
	CertData []byte `json:"certData,omitempty" protobuf:"bytes,3,opt,name=certData"`
	// KeyData holds PEM-encoded bytes (typically read from a client certificate key file).
	// KeyData takes precedence over KeyFile
	KeyData []byte `json:"keyData,omitempty" protobuf:"bytes,4,opt,name=keyData"`
	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
	// CAData takes precedence over CAFile
	CAData []byte `json:"caData,omitempty" protobuf:"bytes,5,opt,name=caData"`
}

TLSClientConfig contains settings to enable transport layer security

func (*TLSClientConfig) DeepCopy

func (in *TLSClientConfig) DeepCopy() *TLSClientConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSClientConfig.

func (*TLSClientConfig) DeepCopyInto

func (in *TLSClientConfig) DeepCopyInto(out *TLSClientConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*TLSClientConfig) Descriptor

func (*TLSClientConfig) Descriptor() ([]byte, []int)

func (*TLSClientConfig) Marshal

func (m *TLSClientConfig) Marshal() (dAtA []byte, err error)

func (*TLSClientConfig) MarshalTo

func (m *TLSClientConfig) MarshalTo(dAtA []byte) (int, error)

func (*TLSClientConfig) ProtoMessage

func (*TLSClientConfig) ProtoMessage()

func (*TLSClientConfig) Reset

func (m *TLSClientConfig) Reset()

func (*TLSClientConfig) Size

func (m *TLSClientConfig) Size() (n int)

func (*TLSClientConfig) String

func (this *TLSClientConfig) String() string

func (*TLSClientConfig) Unmarshal

func (m *TLSClientConfig) Unmarshal(dAtA []byte) error

func (*TLSClientConfig) XXX_DiscardUnknown added in v0.9.0

func (m *TLSClientConfig) XXX_DiscardUnknown()

func (*TLSClientConfig) XXX_Marshal added in v0.9.0

func (m *TLSClientConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TLSClientConfig) XXX_Merge added in v0.9.0

func (dst *TLSClientConfig) XXX_Merge(src proto.Message)

func (*TLSClientConfig) XXX_Size added in v0.9.0

func (m *TLSClientConfig) XXX_Size() int

func (*TLSClientConfig) XXX_Unmarshal added in v0.9.0

func (m *TLSClientConfig) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL