def commentForStep()

in cloud/aws/node/generate-setup-script.py [0:0]


	def commentForStep(name):
		"""
		Returns a descriptive comment for the build step with the specified name
		"""
		return {
			
			'ConfigureDirectories':               '# Create each of our directories',
			'DownloadKubernetes':                 '# Download the Kubernetes components',
			'DownloadEKSArtifacts':               '# Download the EKS artifacts archive',
			'ExtractEKSArtifacts':                '# Extract the EKS artifacts archive',
			'MoveEKSArtifacts':                   '# Move the EKS files into place',
			'ExecuteBuildScripts':                '# Perform EKS worker node setup',
			'RemoveEKSArtifactDownloadDirectory': '# Perform cleanup',
			
			'InstallContainers': '\n'.join([
				'# Install the Windows Containers feature',
				'# (Note: this is actually a no-op here, since we install the feature beforehand in startup.ps1)'
			])
			
		}.get(name, None)