mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	 f4e873c4e1
			
		
	
	f4e873c4e1
	
	
	
		
			
			Add support to auto-update containers running in systemd units as generated with `podman generate systemd --new`. `podman auto-update` looks up containers with a specified "io.containers.autoupdate" label (i.e., the auto-update policy). If the label is present and set to "image", Podman reaches out to the corresponding registry to check if the image has been updated. We consider an image to be updated if the digest in the local storage is different than the one of the remote image. If an image must be updated, Podman pulls it down and restarts the container. Note that the restarting sequence relies on systemd. At container-creation time, Podman looks up the "PODMAN_SYSTEMD_UNIT" environment variables and stores it verbatim in the container's label. This variable is now set by all systemd units generated by `podman-generate-systemd` and is set to `%n` (i.e., the name of systemd unit starting the container). This data is then being used in the auto-update sequence to instruct systemd (via DBUS) to restart the unit and hence to restart the container. Note that this implementation of auto-updates relies on systemd and requires a fully-qualified image reference to be used to create the container. This enforcement is necessary to know which image to actually check and pull. If we used an image ID, we would not know which image to check/pull anymore. Fixes: #3575 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package autoupdate
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestValidateImageReference(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		input string
 | |
| 		valid bool
 | |
| 	}{
 | |
| 		{ // Fully-qualified reference
 | |
| 			input: "quay.io/foo/bar:tag",
 | |
| 			valid: true,
 | |
| 		},
 | |
| 		{ // Fully-qualified reference in transport notation
 | |
| 			input: "docker://quay.io/foo/bar:tag",
 | |
| 			valid: true,
 | |
| 		},
 | |
| 		{ // Fully-qualified reference but with digest
 | |
| 			input: "quay.io/foo/bar@sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9",
 | |
| 			valid: false,
 | |
| 		},
 | |
| 		{ // Reference with missing tag
 | |
| 			input: "quay.io/foo/bar",
 | |
| 			valid: false,
 | |
| 		},
 | |
| 		{ // Short name
 | |
| 			input: "alpine",
 | |
| 			valid: false,
 | |
| 		},
 | |
| 		{ // Short name with repo
 | |
| 			input: "library/alpine",
 | |
| 			valid: false,
 | |
| 		},
 | |
| 		{ // Wrong transport
 | |
| 			input: "docker-archive:/some/path.tar",
 | |
| 			valid: false,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for _, test := range tests {
 | |
| 		err := ValidateImageReference(test.input)
 | |
| 		if test.valid && err != nil {
 | |
| 			t.Fatalf("parsing %q should have succeeded: %v", test.input, err)
 | |
| 		} else if !test.valid && err == nil {
 | |
| 			t.Fatalf("parsing %q should have failed", test.input)
 | |
| 		}
 | |
| 	}
 | |
| }
 |