2020-11-17 10:15:07 +01:00
|
|
|
/*
|
|
|
|
Copyright 2020 Docker Compose CLI authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-06-15 09:57:38 +02:00
|
|
|
package compose
|
2020-11-17 10:15:07 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-11-18 17:18:41 +01:00
|
|
|
|
2023-11-08 10:19:24 +01:00
|
|
|
"github.com/compose-spec/compose-go/v2/types"
|
2020-11-17 10:15:07 +01:00
|
|
|
"github.com/opencontainers/go-digest"
|
|
|
|
)
|
|
|
|
|
2022-08-02 13:11:57 +02:00
|
|
|
// ServiceHash computes the configuration hash for a service.
|
2021-03-19 14:03:27 +01:00
|
|
|
func ServiceHash(o types.ServiceConfig) (string, error) {
|
2021-04-21 10:23:36 +02:00
|
|
|
// remove the Build config when generating the service hash
|
|
|
|
o.Build = nil
|
|
|
|
o.PullPolicy = ""
|
2023-11-08 10:19:24 +01:00
|
|
|
o.Scale = nil
|
|
|
|
if o.Deploy != nil {
|
|
|
|
o.Deploy.Replicas = nil
|
2022-12-20 18:29:43 +01:00
|
|
|
}
|
2024-08-21 15:23:21 +02:00
|
|
|
o.DependsOn = nil
|
2024-11-05 07:37:14 +01:00
|
|
|
o.Profiles = nil
|
2023-11-08 10:19:24 +01:00
|
|
|
|
2020-11-17 10:15:07 +01:00
|
|
|
bytes, err := json.Marshal(o)
|
|
|
|
if err != nil {
|
2020-11-18 17:18:41 +01:00
|
|
|
return "", err
|
2020-11-17 10:15:07 +01:00
|
|
|
}
|
2021-03-19 14:03:27 +01:00
|
|
|
return digest.SHA256.FromBytes(bytes).Encoded(), nil
|
2020-11-17 10:15:07 +01:00
|
|
|
}
|
2024-11-05 15:42:59 +01:00
|
|
|
|
2024-10-21 12:01:50 +01:00
|
|
|
// NetworkHash computes the configuration hash for a network.
|
2024-11-05 15:42:59 +01:00
|
|
|
func NetworkHash(o *types.NetworkConfig) (string, error) {
|
|
|
|
bytes, err := json.Marshal(o)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return digest.SHA256.FromBytes(bytes).Encoded(), nil
|
|
|
|
}
|
2024-10-21 12:01:50 +01:00
|
|
|
|
|
|
|
// VolumeHash computes the configuration hash for a volume.
|
|
|
|
func VolumeHash(o types.VolumeConfig) (string, error) {
|
|
|
|
if o.Driver == "" { // (TODO: jhrotko) This probably should be fixed in compose-go
|
|
|
|
o.Driver = "local"
|
|
|
|
}
|
|
|
|
bytes, err := json.Marshal(o)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return digest.SHA256.FromBytes(bytes).Encoded(), nil
|
|
|
|
}
|