Skip to content

Commit

Permalink
fix: fix calico manifests URL
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek committed Feb 10, 2023
1 parent 6e28bcc commit ecc5796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/clusters/types/kind/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func NewFromExisting(name string) (clusters.Cluster, error) {
// -----------------------------------------------------------------------------

const (
defaultCalicoManifests = "https://projectcalico.docs.tigera.io/manifests/calico.yaml"
defaultCalicoManifests = "https://raw.githubusercontent.com/projectcalico/calico/v3.25.0/manifests/calico.yaml"
)

// -----------------------------------------------------------------------------
Expand Down Expand Up @@ -148,5 +148,5 @@ func (b *Builder) disableDefaultCNI() error {
return err
}

return os.WriteFile(*b.configPath, configYAML, 0600) //nolint:gomnd
return os.WriteFile(*b.configPath, configYAML, 0o600) //nolint:gomnd
}

0 comments on commit ecc5796

Please sign in to comment.