From 45bbacfcd8e1244fc616d5d4f76bbc15718ec499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20S=C4=99k?= Date: Mon, 11 Feb 2019 21:34:56 +0100 Subject: [PATCH] Rename VirtusLab/jenkins-operator to jenkinsci/kubernetes-operator --- README.md | 2 +- cicd/jobs/build.jenkins | 2 +- cicd/pipelines/build.jenkins | 2 +- deploy/crds/virtuslab_v1alpha1_jenkins_cr.yaml | 2 +- docs/installation.md | 7 +------ test/e2e/jenkins.go | 2 +- 6 files changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index eef0c417..4039c845 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Some of the problems we want to solve: ## Contribution -Feel free to file [issues](https://github.com/jenkinsci/kubernetes-operator/issues) or [pull requests](https://github.com/VirtusLab/jenkins-operator/pulls). +`Feel free to file [issues](https://github.com/jenkinsci/kubernetes-operator/issues) or [pull requests](https://github.com/jenkinsci/kubernetes-operator/pulls). ## About the authors diff --git a/cicd/jobs/build.jenkins b/cicd/jobs/build.jenkins index b4f1fa13..b7d7b510 100644 --- a/cicd/jobs/build.jenkins +++ b/cicd/jobs/build.jenkins @@ -19,7 +19,7 @@ pipelineJob('build-jenkins-operator') { scm { git { remote { - url('https://github.com/VirtusLab/jenkins-operator.git') + url('https://github.com/jenkinsci/kubernetes-operator.git') credentials('jenkins-operator') } branches('*/master') diff --git a/cicd/pipelines/build.jenkins b/cicd/pipelines/build.jenkins index 13df42e7..dd9e4573 100644 --- a/cicd/pipelines/build.jenkins +++ b/cicd/pipelines/build.jenkins @@ -3,7 +3,7 @@ def label = "build-jenkins-operator-${UUID.randomUUID().toString()}" def home = "/home/jenkins" def workspace = "${home}/workspace/build-jenkins-operator" -def workdir = "${workspace}/src/github.com/VirtusLab/jenkins-operator/" +def workdir = "${workspace}/src/github.com/jenkinsci/kubernetes-operator/" podTemplate(label: label, containers: [ diff --git a/deploy/crds/virtuslab_v1alpha1_jenkins_cr.yaml b/deploy/crds/virtuslab_v1alpha1_jenkins_cr.yaml index 6672061d..05c7471b 100644 --- a/deploy/crds/virtuslab_v1alpha1_jenkins_cr.yaml +++ b/deploy/crds/virtuslab_v1alpha1_jenkins_cr.yaml @@ -10,4 +10,4 @@ spec: targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: https://github.com/VirtusLab/jenkins-operator.git + repositoryUrl: https://github.com/jenkinsci/kubernetes-operator.git diff --git a/docs/installation.md b/docs/installation.md index 2135f13d..6f387f72 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -19,17 +19,12 @@ kubectl apply -f deploy/crds/virtuslab_v1alpha1_jenkins_crd.yaml ## Deploy jenkins-operator -A`pply Service Account and RBAC roles: +Apply Service Account and RBAC roles: ```bash kubectl apply -f deploy/service_account.yaml kubectl apply -f deploy/role.yaml kubectl apply -f deploy/role_binding.yaml -``` - -Update container image to **virtuslab/jenkins-operator:** in `deploy/operator.yaml` and deploy **jenkins-operator**: - -```bash kubectl apply -f deploy/operator.yaml ``` diff --git a/test/e2e/jenkins.go b/test/e2e/jenkins.go index 0b1216ed..d0f69263 100644 --- a/test/e2e/jenkins.go +++ b/test/e2e/jenkins.go @@ -115,7 +115,7 @@ func createJenkinsCRWithSeedJob(t *testing.T, namespace string) *virtuslabv1alph Targets: "cicd/jobs/*.jenkins", Description: "Jenkins Operator repository", RepositoryBranch: "master", - RepositoryURL: "https://github.com/VirtusLab/jenkins-operator.git", + RepositoryURL: "https://github.com/jenkinsci/kubernetes-operator.git", }, }, },