- A lot of positive feedback from attendees about how the event was run and the content.
- Thought the flow of talks was really nice
- Continuity of the talks was spot on, good flow. Venue was awesome. Probably best tech event I've been to.
- liked that the talks weren't too long
- liked the willingness for everyone to jump in and help
- Venue was great, really positive vibe, great to interact with so many people passionate about Helm
- Really liked the vibe of the whole thing. "At Kubecon you felt anonymous, here you don't"
- loved the vibe and venue, i think the vibe reflected that the core team are good people
This file contains 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
2018/04/23 20:57:18 [cni-net] Processing ADD command with args {ContainerID:1685e54ac648974d551d63b60c01475109e8c0dbccd5236bbe0e6fe7d4140b1e Netns:/proc/49369/ns/net IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=kube-system;K8S_POD_NAME=kube-dns-66cff6c6f-lfnvz;K8S_POD_INFRA_CONTAINER_ID=1685e54ac648974d551d63b60c01475109e8c0dbccd5236bbe0e6fe7d4140b1e Path:/opt/azure-vnet/bin:/opt/cni/bin}. | |
2018/04/23 20:57:18 [cni-net] Read network configuration &{CNIVersion:0.3.0 Name:azure Type:azure-vnet Mode:bridge Master:eth1 Bridge:azure0 LogLevel: LogTarget: Ipam:{Type:azure-vnet-ipam Environment: AddrSpace: Subnet: Address: QueryInterval:}}. | |
2018/04/23 20:57:18 [cni-net] Creating network azure. | |
2018/04/23 20:57:18 [cni] Calling plugin azure-vnet-ipam ADD nwCfg:&{CNIVersion:0.3.0 Name:azure Type:azure-vnet Mode:bridge Master:eth1 Bridge:azure0 LogLevel: LogTarget: Ipam:{Type:azure-vnet-ipam Environment: AddrSpace: Subnet: Address: QueryInterval:}}. | |
2018/04/23 20:57:18 [cni] Plugin azure-vnet-ipam returned result: |
This file contains 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
$ TF_LOG=debug CLUSTER_NAME=seano make apply | |
terraform get | |
2018/04/22 21:27:53 [INFO] Terraform version: 0.11.7 | |
2018/04/22 21:27:53 [INFO] Go runtime version: go1.10.1 | |
2018/04/22 21:27:53 [INFO] CLI args: []string{"/usr/local/Cellar/terraform/0.11.7/bin/terraform", "get"} | |
2018/04/22 21:27:53 [DEBUG] Attempting to open CLI config file: /Users/seknox/.terraformrc | |
2018/04/22 21:27:53 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/04/22 21:27:53 [INFO] CLI command args: []string{"get"} | |
- module.rg |
This file contains 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
Apr 15 21:42:19 node1 systemd[1]: Started Kubernetes Kubelet. | |
Apr 15 21:42:28 node1 kubelet[3421]: Flag --allow-privileged has been deprecated, will be removed in a future version | |
Apr 15 21:42:28 node1 kubelet[3421]: Flag --anonymous-auth has been deprecated, This parameter should be set via the config file specified by the Kubelet's --config flag. See https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for more information. | |
Apr 15 21:42:28 node1 kubelet[3421]: Flag --authorization-mode has been deprecated, This parameter should be set via the config file specified by the Kubelet's --config flag. See https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for more information. | |
Apr 15 21:42:28 node1 kubelet[3421]: Flag --client-ca-file has been deprecated, This parameter should be set via the config file specified by the Kubelet's --config flag. See https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for more information. | |
Apr 15 21:42:28 node1 kubelet[ |
This file contains 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
# Copyright 2016 The Kubernetes Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
$ git clone [email protected]:Azure/kashti.git
$ cd kashti
This file contains 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
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: brigade-ui | |
namespace: brigade-ui | |
annotations: | |
kubernetes.io/tls-acme: "true" | |
kubernetes.io/ingress.class: "nginx" | |
spec: | |
tls: |
This file contains 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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: nginx | |
labels: | |
app: nginx | |
spec: | |
containers: | |
- name: nginx | |
image: nginx |
This file contains 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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: nano | |
name: nano | |
spec: | |
replicas: 1 | |
template: | |
metadata: |