grizzthedj
grizzthedj

Reputation: 7505

"Bake" Stage Type not showing in Stage Types Dropdown in Spinnaker Pipeline

I'm trying to create a pipeline to Bake an image, push that image to a Docker Registry, then deploy it to my Kubernetes cluster. I am following the steps here.

Everything is working fine up until I try to create the Bake stage. When I open the Stage Type dropdown on the Pipeline page, there is no Bake option in the dropdown.

Is there some config that needs to be applied(via Halyard or otherwise) in order to make the Bake Stage Type available? I'm running Spinnaker version 1.5.3.

Upvotes: 0

Views: 494

Answers (1)

Jose Armesto
Jose Armesto

Reputation: 13749

I believe the bake stage type is only available when deploying AMI's to AWS. So it's not a valid stage if you want to create a Docker image. Look at this example

NOTE: Kubernetes: The following example pipeline is predicated on running a VM based deployment solution (e.g. AWS, GCP). Comprehensive documentation of pipeline configuration for Kubernetes is incoming, as it is slightly different for container based solutions.

Here you can find some guides on getting similar results when using Kubernetes and containers:

Upvotes: 1

Related Questions