mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 16:31:13 +01:00 
			
		
		
		
	Allow skipping NAT for the given destinations from a cluster network. This option makes it possible to form an etcd cluster from clusters in different networks created by running `talosctl cluster create` command multiple times using different CIDRs: they simply should have the CIDR of the other clusters passed with `--non-masquerade-cidrs`. Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			843 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			843 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # Sync changes with configuring-pull-through-cache.md.
 | |
| 
 | |
| set -e
 | |
| 
 | |
| docker run -d -p 5000:5000 \
 | |
|     -e REGISTRY_PROXY_REMOTEURL=https://registry-1.docker.io \
 | |
|     --restart always \
 | |
|     --name registry-docker.io registry:2
 | |
| 
 | |
| docker run -d -p 5001:5000 \
 | |
|     -e REGISTRY_PROXY_REMOTEURL=https://registry.k8s.io \
 | |
|     --restart always \
 | |
|     --name registry-registry.k8s.io registry:2
 | |
| 
 | |
| docker run -d -p 5003:5000 \
 | |
|     -e REGISTRY_PROXY_REMOTEURL=https://gcr.io \
 | |
|     --restart always \
 | |
|     --name registry-gcr.io registry:2
 | |
| 
 | |
| docker run -d -p 5004:5000 \
 | |
|     -e REGISTRY_PROXY_REMOTEURL=https://ghcr.io \
 | |
|     --restart always \
 | |
|     --name registry-ghcr.io registry:2
 | |
| 
 | |
| docker run -d -p 5006:5000 \
 | |
|     -e REGISTRY_PROXY_REMOTEURL=https://factory.talos.dev \
 | |
|     --restart always \
 | |
|     --name registry-factory.talos.dev registry:2
 |