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
| kubectl logs <nginx-ingress-pod> -n nginx-ingress |
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
| # esxcli system hostname set --fqdn localhost.domain |
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
| # esxcli network firewall ruleset set -e true -r httpClient | |
| # esxcli software sources profile list -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml | grep ESXi-6.7 | |
| # esxcli software profile update -p ESXi-6.7.0-20190104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml |
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
| __git_branch='`git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`' | |
| export PS1="\u@\h \w $__git_branch> " |
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
| docker exec -t -i mycontainer /bin/bash |
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
| mvn versions:display-dependency-updates |
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
| DROP USER MYSCHEMA CASCADE; | |
| CREATE USER MYSCHEMA IDENTIFIED BY MYPASSWORD DEFAULT TABLESPACE USERS; | |
| GRANT CONNECT TO MYSCHEMA; | |
| GRANT RESOURCE TO MYSCHEMA; | |
| GRANT CREATE TABLE TO MYSCHEMA; | |
| GRANT CREATE VIEW TO MYSCHEMA; | |
| GRANT CREATE TRIGGER TO MYSCHEMA; | |
| GRANT CREATE SEQUENCE TO MYSCHEMA; |
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
| <plugin> | |
| <groupId>com.google.code.maven-replacer-plugin</groupId> | |
| <artifactId>replacer</artifactId> | |
| <configuration> | |
| <file>src/generated/java/META-INF/sun-jaxb.episode</file> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <id>search-for-german-comment</id> | |
| <phase>process-resources</phase> |
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
| git config --global alias.hist "log --graph --decorate --date=iso --abbrev-commit --all --pretty=format:'%C(red)%h%C(reset) - %C(yellow)%d%C(reset) %s - %C(white)%ad%C(reset) %C(cyan)<%an>%C(reset)'" |
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
| mvn release:branch -DbranchName=jsflib_migration_branch -DupdateBranchVersions=true -DupdateWorkingCopyVersions=false -DautoVersionSubmodules=true | |
| # Parameters | |
| # -DbranchName: The branch name to use | |
| # -DupdateBranchVersions: Whether to update versions in the branch | |
| # -DupdateWorkingCopyVersions: Whether to update versions in the working copy | |
| # -DautoVersionSubmodules: Whether to automatically assign submodules the parent version. If set to false, the user will be prompted for the version of each submodules | |