Fixed image

This commit is contained in:
Priya Wadhwa 2018-02-28 12:22:26 -08:00
parent 66bb59ff12
commit 142ec6aa98
No known key found for this signature in database
GPG Key ID: 0D0DAFD8F7AA73AE
2 changed files with 21 additions and 3 deletions

16
files/policy.json Normal file
View File

@ -0,0 +1,16 @@
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports": {
"docker-daemon": {
"": [
{
"type": "insecureAcceptAnything"
}
]
}
}
}

View File

@ -1,9 +1,12 @@
/*
Copyright 2018 Google LLC
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.
@ -60,12 +63,11 @@ func PushImage(destImg string) error {
return err
}
logrus.Infof("Pushing image to %s", destImg)
err = copy.Image(policyContext, destRef, srcRef, nil)
return err
return copy.Image(policyContext, destRef, srcRef, nil)
}
func getPolicyContext() (*signature.PolicyContext, error) {
policy, err := signature.NewPolicyFromFile(constants.PolicyJsonPath)
policy, err := signature.NewPolicyFromFile(constants.PolicyJSONPath)
if err != nil {
logrus.Debugf("Error retrieving policy: %s", err)
return nil, err