Merge pull request #975 from fluxcd/fix-snaphot-drift
Prevent snapshot drift when upgrading to API v2
This commit is contained in:
commit
461d45db75
|
|
@ -37,7 +37,7 @@ func TestDigest(t *testing.T) {
|
||||||
rel: Observation{
|
rel: Observation{
|
||||||
Name: "foo",
|
Name: "foo",
|
||||||
},
|
},
|
||||||
exp: "sha256:ca8901e499a79368647134cc4f1c2118f8e7ec64c8a4703b281d17fb01acfbed",
|
exp: "sha256:91b6773f7696d3eb405708a07e2daedc6e69664dabac8e10af7d570d09f947d5",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ type Observation struct {
|
||||||
// Namespace is the Kubernetes namespace of the release.
|
// Namespace is the Kubernetes namespace of the release.
|
||||||
Namespace string `json:"namespace"`
|
Namespace string `json:"namespace"`
|
||||||
// OCIDigest is the digest of the OCI artifact that was used to
|
// OCIDigest is the digest of the OCI artifact that was used to
|
||||||
OCIDigest string `json:"ociDigest"`
|
OCIDigest string `json:"ociDigest,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Targets returns if the release matches the given name, namespace and
|
// Targets returns if the release matches the given name, namespace and
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue