Skip to content

Commit

Permalink
print detailed
Browse files Browse the repository at this point in the history
Signed-off-by: dwertent <[email protected]>
  • Loading branch information
dwertent committed Dec 6, 2024
1 parent d440b53 commit 8781d8a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions operator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ def printClusterStatus(String namespace) {
def getAllProcess = getAllCommand.execute()
getAllProcess.waitFor()
println getAllProcess.in.text.trim()

def getYAMLCommand = ["kubectl", "get", "reg", "-n", namespace, "-oyaml"]
def getYAMLProcess = getYAMLCommand.execute()
getYAMLProcess.waitFor()
println getYAMLProcess.in.text.trim()
}

def verifyResourceCreated(String namespace, String resourceType, String resourceName, String desiredReplicas = "1", int timeoutSeconds = 60) {
Expand Down

0 comments on commit 8781d8a

Please sign in to comment.