remove namespace from backup name

This commit is contained in:
Sergey Dudoladov 2019-04-17 17:58:41 +02:00
parent 20364e56a9
commit 01b066b7a3
1 changed files with 1 additions and 1 deletions

View File

@ -1410,5 +1410,5 @@ func (c *Cluster) generateLogicalBackupPodEnvVars() []v1.EnvVar {
// getLogicalBackupJobName returns the name; the job itself may not exists
func (c *Cluster) getLogicalBackupJobName() (jobName string) {
return "logical-backup-" + c.clusterName().Namespace + "-" + c.clusterName().Name
return "logical-backup-" + c.clusterName().Name
}