- command line values (for example, -u my_user, these are not variables)
- role defaults (defined in role/defaults/main.yml)
- inventory file or script group vars
- inventory group_vars/all
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
""" | |
List unhealthy services in your ECS clusters | |
The script will list the clusters and fetch details about services that are | |
running in it. | |
Then it determines if the service is healthy or not: | |
* the service status must be ACTIVE | |
* the service must have a non-empty events list | |
* the service desiredCount equals its runningCount | |
* the last event message of the service ends with 'has reached a steady state.' |
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 - jenkins-master-docker-compose.yml | |
jenkins_app: | |
image: jenkins:2.60.1 | |
container_name: jenkins_master | |
restart: always | |
ports: | |
- "80:8080" |
type tmux
in terminal
Windows:
- Create new window: Ctrl+b c
- Move to next window: Ctrl+b n
- Move to previos window: Ctrl+b p
- List all wondows: Ctrl+b w
Panes/Split:
Go to: https://m.facebook.com/pages/launchpoint/liked_pages
Paste the following script into console (F12 -> console):
var unlike_all = ()=> {
[].slice.call(document.querySelectorAll('[data-sigil="action-title"')).filter(x=>x.innerText.indexOf('Unlike') !=-1).map(x=>{x.click()});
window.scrollTo(0,document.body.scrollHeight);
window.setTimeout(unlike_all, 3 * 1000)
OlderNewer