atam panday
atam panday
Not sure if this is related,on [email protected] and [email protected] I tried : ``` @kopf.on.login() def login_fn(**kwargs): # return kopf.login_via_client(**kwargs) return kopf.login_via_pykube(**kwargs) @kopf.on.event('', 'v1', 'namespaces') # @kopf.on.create('core', 'v1', 'namespaces') ``` Results...
Hi, I am also interested to know what the planning is concerning pruning support and if it conceptually will be the same as the official node implementation with same limitations...
I still have this issue with Terraform v0.12.29 provider.archive v2.0.0 provider.aws v3.15.0 provider.template v2.2.0 Need `filebase64 `to support file > 4mb because using it in combination with `archive_file `is the...
Can this get more attention please?
@qianlnk I am having a problem making this work.... does it support proto3? ``` syntax = "proto3"; package contracts; import "Common.proto"; //import "google/protobuf/timestamp.proto"; message ZZZ { string id = 1;...
@qianlnk thank you for the response. I changed the proto to: string ID = 1; // `db:"id,omitempty"` In above and below example the ` before db and at the end...
@qianlnk OK, I have it figured out a bit more :) message ZZZZ { string ID = 1; //`db:"id"` string clientID = 2; //`db:"id"` double amount = 3; } Things...
+1 There are enough use-cases for a non-Loadbalancer service (ClusterIP or NodePort) which leads to DNS Records with a private IP to overwrite that IP and have control. In my...
Hi @hobbsh , is there an update on this? Thanks
Is this still relevant? What about the exec plugin? [](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#exec-plugins) E.g. ``` provider "helm" { kubernetes { host = module.eks.cluster_endpoint cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data) exec { api_version = "client.authentication.k8s.io/v1beta1" command =...