diff --git a/Jenkinsfile b/Jenkinsfile
index 99b530a38a157e875abc0647059879705b56d757..2946f72fada7039298f74af3a449e2545bf30474 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -259,7 +259,7 @@ Void setNewTestVersion() {
 
 Void setNewOzgOperatorVersion(String environment) {
     dir("gitops") {
-        def envFile = "${environment}/application/values/ozg-operator-values.yaml"
+        def envFile = "${environment}/application/values/ozgcloud-keycloak-operator-values.yaml"
         def envVersions = readYaml file: envFile
 
         envVersions.ozg_operator.image.tag = IMAGE_TAG
@@ -287,7 +287,7 @@ Void pushNewGitopsVersion(String environment) {
             sh "git add ${environment}/application/values/ozg-operator-values.yaml"
 
             sh "git commit -m 'jenkins rollout ${environment} ozg-operator version ${IMAGE_TAG}'"
-            sh 'git push https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-gitops/gitops.git'
+            sh 'git push https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-devops/gitops.git'
         }
     }
 }
@@ -308,7 +308,7 @@ Void configureGit() {
 
 Void cloneGitopsRepo() {
     withCredentials([usernamePassword(credentialsId: 'jenkins-gitea-access-token', passwordVariable: 'TOKEN', usernameVariable: 'USER')]) {
-        sh 'git clone https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-gitops/gitops.git'
+        sh 'git clone https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-devops/gitops.git'
     }
 
     configureGit()