Definizione jobs.deployment.environment
La parola chiave environment
specifica l'ambiente o la relativa risorsa di destinazione da un processo di distribuzione della pipeline.
Definizioni che fanno riferimento a questa definizione: jobs.deployment
Implementazioni
Implementazione | Descrizione |
---|---|
ambiente : stringa | Processo di distribuzione con nome ambiente. |
ambiente : name, resourceName, resourceId, resourceType, tag | Sintassi completa per il controllo completo. |
Osservazioni:
Un ambiente contiene anche informazioni sulla strategia di distribuzione per l'esecuzione dei passaggi definiti all'interno del processo.
È possibile ridurre l'ambito della destinazione di distribuzione a una determinata risorsa all'interno dell'ambiente, come illustrato di seguito:
environment: 'smarthotel-dev.bookings'
strategy:
runOnce:
deploy:
steps:
- task: KubernetesManifest@0
displayName: Deploy to Kubernetes cluster
inputs:
action: deploy
namespace: $(k8sNamespace)
manifests: $(System.ArtifactsDirectory)/manifests/*
imagePullSecrets: $(imagePullSecret)
containers: $(containerRegistry)/$(imageRepository):$(tag)
# value for kubernetesServiceConnection input automatically passed down to task by environment.resource input
environment: string
Per specificare un ambiente in base al nome senza utilizzare proprietà aggiuntive, utilizzare la sintassi seguente.
environment: string # Deployment job with environment name.
environment
stringa.
Processo di distribuzione con nome ambiente.
Esempi
environment: environmentName.resourceName
strategy: # deployment strategy
runOnce: # default strategy
deploy:
steps:
- script: echo Hello world
environment: name, resourceName, resourceId, resourceType, tags
Per configurare le proprietà dell'ambiente oltre al nome, usare la sintassi completa.
environment:
name: string # Name of environment.
resourceName: string # Name of resource.
resourceId: string # Id of resource.
resourceType: string # Type of environment resource.
tags: string # List of tag filters.
Proprietà
name
stringa.
Nome dell'ambiente.
resourceName
stringa.
Nome della risorsa.
resourceId
stringa.
ID della risorsa.
resourceType
stringa.
Tipo di risorsa dell'ambiente.
tags
stringa.
Elenco di filtri di tag.
Esempi
La sintassi completa è:
environment: # create environment and/or record deployments
name: string # name of the environment to run this job on.
resourceName: string # name of the resource in the environment to record the deployments against
resourceId: number # resource identifier
resourceType: string # type of the resource you want to target. Supported types - virtualMachine, Kubernetes
tags: string # comma separated tag names to filter the resources in the environment
strategy: # deployment strategy
runOnce: # default strategy
deploy:
steps:
- script: echo Hello world
Se si specifica un ambiente o una delle relative risorse, ma non è necessario specificare altre proprietà, è possibile abbreviare la sintassi in:
environment: environmentName.resourceName
strategy: # deployment strategy
runOnce: # default strategy
deploy:
steps:
- script: echo Hello world
È possibile ridurre l'ambito della destinazione di distribuzione a una determinata risorsa all'interno dell'ambiente, come illustrato di seguito:
environment: 'smarthotel-dev.bookings'
strategy:
runOnce:
deploy:
steps:
- task: KubernetesManifest@0
displayName: Deploy to Kubernetes cluster
inputs:
action: deploy
namespace: $(k8sNamespace)
manifests: $(System.ArtifactsDirectory)/manifests/*
imagePullSecrets: $(imagePullSecret)
containers: $(containerRegistry)/$(imageRepository):$(tag)
# value for kubernetesServiceConnection input automatically passed down to task by environment.resource input