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
Jump to new line at end of file and enter insert mode: `Go` | |
Append to end of line: `A` |
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
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 |
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
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 |