Skip to content

Commit

Permalink
razee naming (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
carrolp authored Dec 5, 2022
1 parent 45bbc45 commit b5385f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/backendservice/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = class Git extends BackendService {
constructor(sub, razeeApi, namespace) {
super(sub, razeeApi, namespace);
this._provider = sub.remote.remoteType;
this._secretNameGit = 'satellite-config-gitops';
this._secretNameGit = 'razee-git';
this._auth = false;
sub.remote.parameters.forEach(param => {
if (param.key == 'repo') {
Expand All @@ -38,7 +38,7 @@ module.exports = class Git extends BackendService {
this._auth = (param.value.toLowerCase() === 'true');
}
});

}

get provider() {
Expand All @@ -60,7 +60,7 @@ module.exports = class Git extends BackendService {
get release() {
return this._release;
}

get filePath() {
return this._filePath;
}
Expand Down Expand Up @@ -133,5 +133,5 @@ module.exports = class Git extends BackendService {
}

return rendered;
}
}
};

0 comments on commit b5385f2

Please sign in to comment.