Skip to content

Commit

Permalink
chore: don't deploy ceramic to cas cluster (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 authored Mar 20, 2024
1 parent 19d920c commit 7556cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cd/manager/jobs/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ func (d deployJob) componentTask(component manager.DeployComponent, cluster, ser
}
switch component {
case manager.DeployComponent_Ceramic:
// All clusters have Ceramic nodes
if strings.Contains(service, serviceSuffix_CeramicNode) {
// Ceramic nodes are deployed to the private and public clusters, but not to the CAS cluster.
if (cluster != "ceramic-"+d.env+"-cas") && strings.Contains(service, serviceSuffix_CeramicNode) {
return &manager.Task{Name: containerName_CeramicNode}
}
case manager.DeployComponent_Ipfs:
Expand Down

0 comments on commit 7556cce

Please sign in to comment.