Documentation ¶
Index ¶
- func AddCredentialsSecret(comp InfoGetter, svc *runtime.ServiceRuntime, fieldList []string) (string, error)
- func AddInitialNamespaceQuotas(namespaceKon string) func(context.Context, *runtime.ServiceRuntime) *xfnproto.Result
- func AddSaWithRole(ctx context.Context, svc *runtime.ServiceRuntime, policies []rbacv1.PolicyRule, ...) error
- func AddUserAlerting(obj client.Object) func(ctx context.Context, svc *runtime.ServiceRuntime) *fnproto.Result
- func BootstrapInstanceNs(ctx context.Context, comp Composite, serviceName, namespaceResName string, ...) error
- func CreateNetworkPolicy(sourceNs []string, instanceNs string, instance string, ...) error
- func CreateTlsCerts(ctx context.Context, ns string, serviceName string, ...) error
- func DisableBilling(instanceNamespace string, svc *runtime.ServiceRuntime) error
- func GenerateNonSLAPromRules(obj client.Object) func(ctx context.Context, svc *runtime.ServiceRuntime) *fnproto.Result
- func GetDesiredReleaseValues(svc *runtime.ServiceRuntime, releaseName string) (map[string]interface{}, error)
- func GetObservedReleaseValues(svc *runtime.ServiceRuntime, releaseName string) (map[string]interface{}, error)
- func GetReleaseValues(r *xhelmv1.Release) (map[string]interface{}, error)
- func MailgunAlerting(obj client.Object) func(ctx context.Context, svc *runtime.ServiceRuntime) *xfnproto.Result
- func NewRelease(ctx context.Context, svc *runtime.ServiceRuntime, comp InfoGetter, ...) (*xhelmv1.Release, error)
- func SetNestedObjectValue(values map[string]interface{}, path []string, val interface{}) error
- func SetRandomSchedules(backup BackupScheduler, maintenance MaintenanceScheduler)
- func SetSELinuxSecurityContextDeployment(depl *appsv1.Deployment, comp InfoGetter, svc *runtime.ServiceRuntime) error
- func SetSELinuxSecurityContextStatefulset(sts *appsv1.StatefulSet, comp InfoGetter, svc *runtime.ServiceRuntime) error
- type Alerter
- type BackupScheduler
- type Composite
- type InfoGetter
- type InstanceNamespaceInfo
- type MaintenanceScheduler
- type Resources
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddCredentialsSecret ¶ added in v4.46.0
func AddCredentialsSecret(comp InfoGetter, svc *runtime.ServiceRuntime, fieldList []string) (string, error)
AddCredentialsSecret creates secrets and passwords for use with helm based services. This is to avoid issues with re-generating passwords if helm internal password generators are used. The function accepts a list of fields that should be populated with passwords. It returns the name of the secret resource, so it can be referenced later. The name of the inner secret object is the same as the resource name. Additionally it exposes the generated passwords as connection details, for easier retrieval.
func AddInitialNamespaceQuotas ¶ added in v4.22.0
func AddInitialNamespaceQuotas(namespaceKon string) func(context.Context, *runtime.ServiceRuntime) *xfnproto.Result
AddInitialNamespaceQuotas will add the default quotas to a namespace if they are not yet set. This function takes the name of the namespace resource as it appears in the functionIO, it then returns the actual function that implements the composition function step.
func AddSaWithRole ¶
func AddSaWithRole(ctx context.Context, svc *runtime.ServiceRuntime, policies []rbacv1.PolicyRule, compName, namespace, suffix string) error
AddSaWithRole creates a service account with the given policy and binds it to the role.
func AddUserAlerting ¶ added in v4.42.0
func AddUserAlerting(obj client.Object) func(ctx context.Context, svc *runtime.ServiceRuntime) *fnproto.Result
AddUserAlerting adds user alerting to the Redis instance.
func BootstrapInstanceNs ¶ added in v4.45.0
func CreateNetworkPolicy ¶ added in v4.44.0
func CreateTlsCerts ¶ added in v4.44.0
func DisableBilling ¶ added in v4.60.0
func DisableBilling(instanceNamespace string, svc *runtime.ServiceRuntime) error
DisableBilling deploys a special config map to the appcat control namespace. This configMap contains a key that specifies if a given namespace should be billed or not. The configMap can also be used for other configurations in the future.
func GenerateNonSLAPromRules ¶ added in v4.54.0
func GetDesiredReleaseValues ¶ added in v4.61.0
func GetDesiredReleaseValues(svc *runtime.ServiceRuntime, releaseName string) (map[string]interface{}, error)
GetDesiredReleaseValues returns the desired releaseValues for the given release name.
func GetObservedReleaseValues ¶ added in v4.53.0
func GetObservedReleaseValues(svc *runtime.ServiceRuntime, releaseName string) (map[string]interface{}, error)
GetObservedReleaseValues returns the observed releaseValues for the given release name.
func GetReleaseValues ¶ added in v4.49.0
GetReleaseValues returns the parsed values from the given release.
func MailgunAlerting ¶ added in v4.42.0
func NewRelease ¶ added in v4.53.0
func NewRelease(ctx context.Context, svc *runtime.ServiceRuntime, comp InfoGetter, values map[string]any, cd ...xhelmv1.ConnectionDetail) (*xhelmv1.Release, error)
NewRelease returns a new release with some defaults set.
func SetNestedObjectValue ¶ added in v4.65.0
SetNestedObjectValue is necessary as unstructured can't handle anything except basic values and maps. this is a recursive function, it will traverse the map until it reaches the last element of the path. If it encounters any non-map values while traversing, it will throw an error.
func SetRandomSchedules ¶
func SetRandomSchedules(backup BackupScheduler, maintenance MaintenanceScheduler)
SetRandomSchedules initializes the backup and maintenance schedules if the user did not explicitly provide a schedule. The maintenance will be set to a random time on Tuesday night between 21:00 and 5:00, and the backup schedule will be set to once a day between 20:00 and 4:00. If neither maintenance nor backup is set, the function will make sure that there will be backup scheduled one hour before the maintenance.
func SetSELinuxSecurityContextDeployment ¶ added in v4.64.2
func SetSELinuxSecurityContextDeployment(depl *appsv1.Deployment, comp InfoGetter, svc *runtime.ServiceRuntime) error
func SetSELinuxSecurityContextStatefulset ¶ added in v4.64.2
func SetSELinuxSecurityContextStatefulset(sts *appsv1.StatefulSet, comp InfoGetter, svc *runtime.ServiceRuntime) error
Types ¶
type Alerter ¶ added in v4.42.0
type Alerter interface { GetVSHNMonitoring() vshnv1.VSHNMonitoring GetInstanceNamespace() string }
type BackupScheduler ¶
BackupScheduler can schedule backups
type Composite ¶ added in v4.62.2
type Composite interface { InfoGetter client.Object SetInstanceNamespaceStatus() }
Composite can get and set the relevant information on a given composite.
type InfoGetter ¶ added in v4.46.0
type InfoGetter interface { GetBackupSchedule() string GetBackupRetention() vshnv1.K8upRetentionPolicy GetServiceName() string GetLabels() map[string]string InstanceNamespaceInfo }
InfoGetter will return various information about the given AppCat composite.
type InstanceNamespaceInfo ¶ added in v4.45.2
type InstanceNamespaceInfo interface { GetName() string GetClaimNamespace() string GetInstanceNamespace() string GetLabels() map[string]string }
InstanceNamespaceInfo provides all the necessary information to create an instance namespace.