Skip to content

Instantly share code, notes, and snippets.

Jump to new line at end of file and enter insert mode: `Go`
Append to end of line: `A`
@erstaples
erstaples / kops-cluster-create.log
Created December 3, 2017 18:39
Logs from command: `kops create cluster --zones=us-west-2b --name test.k8s.example.io --networking canal --yes -v 10`
I1203 10:31:23.390517 35890 s3context.go:159] Found bucket "clusters.k8s.example.io" in region "us-east-1"
I1203 10:31:23.390580 35890 s3fs.go:173] Reading file "s3://clusters.k8s.example.io/test.k8s.example.io/config"
I1203 10:31:23.494008 35890 channel.go:91] resolving "stable" against default channel location "https://raw.githubusercontent.com/kubernetes/kops/master/channels/"
I1203 10:31:23.494105 35890 channel.go:96] Loading channel from "https://raw.githubusercontent.com/kubernetes/kops/master/channels/stable"
I1203 10:31:23.494124 35890 context.go:132] Performing HTTP request: GET https://raw.githubusercontent.com/kubernetes/kops/master/channels/stable
I1203 10:31:23.770132 35890 channel.go:105] Channel contents: spec:
images:
# We put the "legacy" version first, for kops versions that don't support versions ( < 1.5.0 )
- name: kope.io/k8s-1.4-debian-jessie-amd64-hvm-ebs-2017-07-28
providerID: aws
public interface IRepository<T> where T: class
{
void Add( T Entity);
void Delete( T Entity);
void Update ( T Entity);
IQueryable<T> GetAll<T>();
//some more methods
}
public interface IDatabaseFactory : IDisposable