Documentation ¶
Index ¶
Constants ¶
View Source
const ( Domain = "sonataflow.org" Key = Domain + "/key" Name = Domain + "/name" Description = Domain + "/description" ExpressionLang = Domain + "/expressionLang" Version = Domain + "/version" Label = Domain + "/label" Profile = Domain + "/profile" SecondaryPlatformAnnotation = Domain + "/secondary.platform" OperatorIDAnnotation = Domain + "/operator.id" RestartedAt = Domain + "/restartedAt" Checksum = Domain + "/checksum-config" )
View Source
const ( // DefaultExpressionLang is the default serverless workflow specification language DefaultExpressionLang = "jq" // SpecVersion is the current CNCF Serverless Workflow version supported by the operator SpecVersion = "0.8" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProfileType ¶
type ProfileType string
const ( // DevProfile deploys a mutable workflow that can be changed based on .spec.flow definitions CR change. DevProfile ProfileType = "dev" // Deprecated: use PreviewProfile. ProdProfile ProfileType = "prod" // PreviewProfile is the default profile if none is set. // The operator will use the platform to do a minimal image build for users to preview an immutable app deployed in the cluster. // Not suitable for production use cases since the managed build has configuration and resources limitations. PreviewProfile ProfileType = "preview" // GitOpsProfile signs the operator that the application image is built externally, skipping any internal managed build. // Ideally used in production use cases GitOpsProfile ProfileType = "gitops" )
func (ProfileType) String ¶
func (p ProfileType) String() string
type QuarkusProfileType ¶
type QuarkusProfileType string
const ( // QuarkusDevProfile the profile used by quarkus in devmode QuarkusDevProfile QuarkusProfileType = "dev" // QuarkusProdProfile the profile used by quarkus in an immutable image QuarkusProdProfile QuarkusProfileType = "prod" )
func (QuarkusProfileType) String ¶
func (p QuarkusProfileType) String() string
Click to show internal directories.
Click to hide internal directories.