mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-11-04 14:44:20 +08:00 
			
		
		
		
	set node name for k8s driver when appending nodes
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									95cefc3c57
								
							
						
					
					
						commit
						fc1a41d2e5
					
				@ -78,6 +78,8 @@ export async function getAppendArgs(inputs: Inputs, node: Node, toolkit: Toolkit
 | 
				
			|||||||
  const args: Array<string> = ['create', '--name', inputs.name, '--append'];
 | 
					  const args: Array<string> = ['create', '--name', inputs.name, '--append'];
 | 
				
			||||||
  if (node.name) {
 | 
					  if (node.name) {
 | 
				
			||||||
    args.push('--node', node.name);
 | 
					    args.push('--node', node.name);
 | 
				
			||||||
 | 
					  } else if (inputs.driver == 'kubernetes' && (await toolkit.buildx.versionSatisfies('<0.11.0'))) {
 | 
				
			||||||
 | 
					    args.push('--node', `node-${uuid.v4()}`);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  if (node['driver-opts'] && (await toolkit.buildx.versionSatisfies('>=0.3.0'))) {
 | 
					  if (node['driver-opts'] && (await toolkit.buildx.versionSatisfies('>=0.3.0'))) {
 | 
				
			||||||
    await Util.asyncForEach(node['driver-opts'], async driverOpt => {
 | 
					    await Util.asyncForEach(node['driver-opts'], async driverOpt => {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user