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
| Mar 2 10:13:24 Latitude-5491 NetworkManager[209052]: <info> [1614672804.1404] audit: op="connection-activate" uuid="a4264465-5253-445b-9256-476373860228" name="vpnhost-UDP4-1203-config" pid=3623 uid=1001 result="success" | |
| Mar 2 10:13:24 Latitude-5491 NetworkManager[209052]: <info> [1614672804.1548] vpn-connection[0x555885034320,a4264465-5253-445b-9256-476373860228,"vpnhost-UDP4-1203-config",0]: Started the VPN service, PID 210283 | |
| Mar 2 10:13:24 Latitude-5491 NetworkManager[209052]: <info> [1614672804.1709] vpn-connection[0x555885034320,a4264465-5253-445b-9256-476373860228,"vpnhost-UDP4-1203-config",0]: Saw the service appear; activating connection | |
| Mar 2 10:13:24 Latitude-5491 NetworkManager[209052]: <info> [1614672804.3525] vpn-connection[0x555885034320,a4264465-5253-445b-9256-476373860228,"vpnhost-UDP4-1203-config",0]: VPN plugin: state changed: starting (3) | |
| Mar 2 10:13:24 Latitude-5491 NetworkManager[209052]: <info> [1614672804.3526] vpn-connection[0x555885034320,a4264465-5253-445b-9256-47637386022 |
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
| #!/usr/bin/env bash | |
| env=${1} | |
| project_name='' | |
| bucket_name='' | |
| path='terraform' | |
| init_file="${path}/init.tf" | |
| region='' | |
| lock_table="${project_name}-locks" |
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
| # iam_policy_statements = { | |
| # MountTarget = { | |
| # effect = "Allow" | |
| # principals = [ | |
| # { | |
| # "type" = "AWS", | |
| # "identifiers" = ["*"], | |
| # } | |
| # ] | |
| # actions = [ |
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
| """ | |
| Module for jenkinsapi requester (which is a wrapper around python-requests) | |
| """ | |
| import requests | |
| import urllib.parse as urlparse | |
| from jenkinsapi.custom_exceptions import JenkinsAPIException, PostRequired | |
| # import logging |
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
| ➜ fiber git:(master) kubectl get pods | |
| NAME READY STATUS RESTARTS AGE | |
| fiber-hello-75f669c6cf-ljvjz 0/1 InvalidImageName 0 5m16s | |
| ➜ fiber git:(master) kubectl logs fiber-hello-75f669c6cf-ljvjz | |
| Error from server (BadRequest): container "hello" in pod "fiber-hello-75f669c6cf-ljvjz" is waiting to start: InvalidImageName | |
| ➜ fiber git:(master) kubectl describe deploy fiber-hello |
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
| # HELP go_gc_duration_seconds A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles. | |
| # TYPE go_gc_duration_seconds summary | |
| go_gc_duration_seconds{quantile="0"} 3.0116e-05 | |
| go_gc_duration_seconds{quantile="0.25"} 4.9938e-05 | |
| go_gc_duration_seconds{quantile="0.5"} 6.3597e-05 | |
| go_gc_duration_seconds{quantile="0.75"} 8.603e-05 | |
| go_gc_duration_seconds{quantile="1"} 0.001619102 | |
| go_gc_duration_seconds_sum 0.031478087 | |
| go_gc_duration_seconds_count 382 | |
| # HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. Sourced from /gc/gogc:percent. |
OlderNewer