Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arogulin/b87346e0bb94c590f0bf2a599392eb6c to your computer and use it in GitHub Desktop.
Save arogulin/b87346e0bb94c590f0bf2a599392eb6c to your computer and use it in GitHub Desktop.
Jenkins plugins outage workaround when using helm chart

As Jenkins download center for plugins is down since November 12, you can modify your values for helm chart by adding the following initContainerEnv block:

master:
  initContainerEnv:
    - name: JENKINS_UC
      value: http://mirrors.jenkins-ci.org/updates/dynamic-stable-2.249.2/update-center.json
    - name: JENKINS_PLUGIN_INFO
      value: http://mirrors.jenkins-ci.org/updates/current/plugin-versions.json
    - name: JENKINS_UC_DOWNLOAD
      value: http://mirrors.jenkins-ci.org

Notice dynamic-stable-2.249.2 in the first variable, this one is for LTS version (2.249.2 and 2.249.3). If you're using any other version, find it here http://mirrors.jenkins-ci.org/updates/ and change the code block as needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment