Skip to content

Commit

Permalink
Disable image digest functionality, not fully implemented yet (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
baksetercx authored Feb 12, 2025
1 parent 420aeba commit ba68ec3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ func Deploy(ctx context.Context, c *cli.Command) error {
return configForApplication.HelmValuesFile
}()
imageTag := c.String("image-tag")
imageDigest := getImageDigest(systemName, applicationName, imageTag)
// NOTE: Not fully implemented yet.
// imageDigest := getImageDigest(systemName, applicationName, imageTag)
const imageDigest = ""

commitHash, err := utils.ResolveCommitHash(c.String("commit-hash"))
if err != nil {
Expand Down Expand Up @@ -457,7 +459,7 @@ type DockerManifest struct {
} `json:"Descriptor"`
}

func getImageDigest(
func getImageDigest( //nolint:unused
systemName string,
applicationName string,
imageTag string,
Expand Down

0 comments on commit ba68ec3

Please sign in to comment.