func()

in internal/handler/appdeployment.go [57:64]


func (a *AppDeploymentHandler) phaseIs(phase ...string) bool {
	for _, p := range phase {
		if a.appDeployment.Status.Phase == p {
			return true
		}
	}
	return false
}