mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 00:11:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			421 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			421 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -eou pipefail
 | |
| 
 | |
| source ./hack/test/e2e.sh
 | |
| 
 | |
| cp "${ARTIFACTS}/e2e-azure-talosconfig" "${TALOSCONFIG}"
 | |
| cp "${ARTIFACTS}/e2e-azure-kubeconfig" "${KUBECONFIG}"
 | |
| 
 | |
| # set the talosconfig to use the first controlplane ip
 | |
| CONTROLPLANE0_NODE=$(${TALOSCTL} config info -o json | jq -r '.endpoints[0]')
 | |
| ${TALOSCTL} config node "${CONTROLPLANE0_NODE}"
 | |
| 
 | |
| run_talos_integration_test
 | |
| run_kubernetes_integration_test
 |