Skip to content

Commit

Permalink
feat(cd): add rust cluster to deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Nov 8, 2023
1 parent 5629b06 commit e629207
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cd/manager/jobs/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ func (d deployJob) generateEnvLayout(component manager.DeployComponent) (*manage
publicCluster := "ceramic-" + d.env + "-ex"
casCluster := "ceramic-" + d.env + "-cas"
casV5Cluster := "app-cas-" + d.env
clusters := []string{privateCluster, publicCluster, casCluster, casV5Cluster}
rustCluster := "ceramic-" + d.env + "-rust"
clusters := []string{privateCluster, publicCluster, casCluster, casV5Cluster, rustCluster}
if ecrRepo, err := d.componentEcrRepo(component); err != nil {
return nil, err
} else
Expand Down

0 comments on commit e629207

Please sign in to comment.