This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* You need the following dependencies in your classpath: | |
* junit-platform-console | |
* junit-platform-launcher | |
* junit-jupiter-engine | |
**/ | |
import org.junit.platform.console.options.CommandLineOptions; | |
import org.junit.platform.console.options.Details; | |
import org.junit.platform.console.options.Theme; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master: | |
useSecurity: true | |
adminUser: "admin" | |
fsGroup: 1000 | |
runAsUser: 1000 | |
serviceType: ClusterIP | |
installPlugins: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Example for the Docker Hub V2 API | |
# Returns all images and tags associated with a Docker Hub organization account. | |
# Requires 'jq': https://stedolan.github.io/jq/ | |
# set username, password, and organization | |
UNAME="" | |
UPASS="" | |
ORG="" |