Skip to content

Commit

Permalink
fix :: remove deployType
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jul 28, 2024
1 parent 4abe88b commit 91beb67
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ private class VaultUtilImpl(
}

override fun getPath(deploy: Deploy, container: Container): String {
return "${deploy.deployName}-${deploy.deployType.name}-${container.containerEnvironment.name}"
return "${deploy.deployName}-${container.containerEnvironment.name}"
}

override fun getPath(deploy: Deploy): List<String> {
return listOf(
"${deploy.deployName}-${deploy.deployType.name}-prod",
"${deploy.deployName}-${deploy.deployType.name}-stag"
"${deploy.deployName}-prod",
"${deploy.deployName}-stag"
)
}
}

0 comments on commit 91beb67

Please sign in to comment.