-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Blocker
-
Component/s: kubernetes-plugin
-
Environment:jenkins: 2.232.3
kubernetes: 3580.v78271e5631dc
Context:
- Jenkins master is running in Kubernetes cluster and deploy through Helm chart.
- A node Cloud configuration is added by default (name: `kubernetes`) with a `k8s-agent` pod template.
- An external Kubernetes is added to node Cloud configuration (name: `specific`) with a `k8s-specific` pod template.
When running pipelines:
pipeline {
  agent {
    kubernetes {
      inheritFrom 'k8s-agent'
    }
  }
  Â
  stages {
    stage('Main') {
      steps {
        echo 'Bonjour'
      }
    }
  }
}
Pod is provisionned on `specific` Kubernetes cluster instead of `kubernetes` one)
- duplicates
-
JENKINS-69104 Inconsiste between plugin description and readme when "cloud" is not defined
-
- Open
-