Skip to content

Commit 2ecb57a

Browse files
committed
fix: lint
1 parent bd05457 commit 2ecb57a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wrongsecrets-balancer/src/kubernetes.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1792,14 +1792,14 @@ const createServiceAccountForWebTop = async (team) => {
17921792
};
17931793

17941794
const createRoleForWebTop = async (team) => {
1795-
const res = await k8sCoreApi.listNamespacedPod({
1795+
const res = await k8sCoreApi.listNamespacedPod({
17961796
namespace: `t-${team}`,
17971797
pretty: true,
17981798
allowWatchBookmarks: true,
17991799
_continue: undefined,
18001800
fieldSelector: undefined,
18011801
labelSelector: `app=secret-challenge-53,team=${team},deployment-context=${get('deploymentContext')}`,
1802-
limit: 1
1802+
limit: 1,
18031803
});
18041804
const podName = res.items[0].metadata.name;
18051805
const roleDefinitionForWebtop = {
@@ -2134,7 +2134,7 @@ const deleteNamespaceForTeam = async (team) => {
21342134
};
21352135

21362136
const deletePodForTeam = async (team) => {
2137-
const res = await k8sCoreApi.listNamespacedPod({
2137+
const res = await k8sCoreApi.listNamespacedPod({
21382138
namespace: `t-${team}`,
21392139
pretty: true,
21402140
allowWatchBookmarks: true,

0 commit comments

Comments
 (0)