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
| 2015/12/17 10:48:33 [INFO] Packer version: 0.8.6 f8f7b7a34c1be06058f5aca23a51247db12cdbc5+CHANGES | |
| 2015/12/17 10:48:33 Packer Target OS/Arch: darwin amd64 | |
| 2015/12/17 10:48:33 Built with Go Version: go1.5.1 | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: amazon-chroot = /usr/local/bin/packer-builder-amazon-chroot | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: amazon-ebs = /usr/local/bin/packer-builder-amazon-ebs | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: amazon-instance = /usr/local/bin/packer-builder-amazon-instance | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: digitalocean = /usr/local/bin/packer-builder-digitalocean | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: docker = /usr/local/bin/packer-builder-docker | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: file = /usr/local/bin/packer-builder-file | |
| 2015/12/17 10:48:33 [DEBUG] Discovered plugin: googlecompute = /usr/local/bin/packer-builder-googlecompute |
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
| object(Symfony\Component\Validator\ConstraintViolationList)[25] | |
| private 'violations' => | |
| array (size=6) | |
| 0 => | |
| object(Symfony\Component\Validator\ConstraintViolation)[31] | |
| private 'message' => string 'This value is too short. It should have 101 characters or more.' (length=63) | |
| private 'messageTemplate' => string 'This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.' (length=142) | |
| private 'messageParameters' => | |
| array (size=2) | |
| '{{ value }}' => string 'Bob' (length=3) |
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 14 14:56:56 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34778 != 34780]) [34782] | |
| Mar 14 14:57:00 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34783 != 34785]) [34785] | |
| Mar 14 14:57:04 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34786 != 34788]) [34790] | |
| Mar 14 14:57:08 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34791 != 34793]) [34795] | |
| Mar 14 14:57:12 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34796 != 34799]) [34800] | |
| Mar 14 14:57:15 k8s-node sdnotify-proxy[853]: I0314 14:57:15.351187 00001 vxlan.go:340] Ignoring not a miss: fa:75:0a:94:49:8b, 10.10.30.0 | |
| Mar 14 14:57:16 k8s-node fleetd[785]: ERROR engine.go:217: Engine leadership lost, renewal failed: 101: Compare failed ([34801 != 34803]) [34803] | |
| Mar 14 14 |
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
| [Unit] | |
| Description=Kubernetes Kubelet | |
| Documentation=http://kubernetes.io/v1.1/ | |
| [Service] | |
| ExecStart=/opt/bin/kubelet \ | |
| --address=$private_ipv4 \ | |
| --allow-privileged=true \ | |
| --api-servers=http://127.0.0.1:8080 \ | |
| --cadvisor-port=4194 \ | |
| --cloud-provider=aws \ |
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 | |
| AUTH0_DOMAIN=<your-auth0-domain> | |
| AUTH0_TOKEN=<your-auth0-token> | |
| function client_list() { | |
| curl -sS \ | |
| -H "Authorization: Bearer $AUTH0_TOKEN" \ | |
| "https://$AUTH0_DOMAIN/api/v2/clients?fields=client_id,name&include_fields=true&_=$(date +%s)" |\ | |
| jq -r -c -M '.[]' |
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
| <script> | |
| window.intercomSettings = { | |
| app_id: 'APP_ID', | |
| name: "Jane Doe", // Full name | |
| email: "customer@example.com", // Email address | |
| created_at: 1312182000 // Signup date as a Unix timestamp | |
| }; | |
| </script> | |
| <script> | |
| (function() { |
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
| package management | |
| type ErrorType int | |
| const ( | |
| UnknownError ErrorType = iota | |
| CannotSetUsernameForConnectionError | |
| PasswordStrengthError |
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
| resource "auth0_user" "user" { | |
| connection_name = "Username-Password-Authentication" | |
| username = "rsatesting" | |
| nickname = "rsatesting" | |
| email = "rob+testing@gmail.com" | |
| email_verified = true | |
| password = "IAmAp455w0rd" | |
| app_metadata = "{\"groups\": [\"project:platform-admin\", \"foo:bar\"]}" | |
| } |
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
| package management | |
| import ( | |
| "encoding/json" | |
| "reflect" | |
| ) | |
| type S struct { | |
| // The discriminator used to undertsand which concrete type of Option we |
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
| package management | |
| import ( | |
| "encoding/json" | |
| ) | |
| type S struct { | |
| // The discriminator used to undertsand which concrete type of Option we | |
| // should use to unmarshal into. Can be either [foo, bar]. |
OlderNewer