Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Score of 4
0 answers
1138 views

I'm trying to generate Go files (mainly structs) from K8S YAML CRD's. The end result would look much like what oapi-codegen does for OpenAPI definitions. I will be working with ANY arbitrary YAML CRD'...
Score of 2
1 answer
213 views

Very simple question. I copy pasted the golang examples of cdk8s right from the documentation. Source. Detail of the error below. I went to the pkg.go site for cdk8s and did not find this type. I'm ...
Score of 0
1 answer
1930 views

I've deployed a MinIO server on Kubernetes with cdk8s, used minio1 as serviceId and exposed port 9000. My expectations were that I could access it using http://minio1:9000, but my MinIO server is ...
Score of 0
1 answer
161 views

In YAML I'd do this: securityContext: capabilities: add: - NET_ADMIN Example in k8: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-capabilities-...
Score of 1
0 answers
168 views

Any idea about this issue? node -v v12.19.0 npm --version 8.13.2 cdk8s import --language python /usr/local/lib/node_modules/cdk8s-cli/node_modules/cdk8s/lib/api-object.js:28 this.name = props....
Score of 0
0 answers
747 views

I am trying to install sealedsecrets as an app to argocd. I have all my sealedsecrets yaml files stored in eee_ops. But I am facing 2 problems a) sync keeps failing in my argocd app as the resource ...
Score of 0
2 answers
437 views

It looks like cdk8s gets synthesized only to Kubernetes manifest files. CDK can manage AWS resources directly, such as EKS clusters, security groups and IAM roles and policies. Is it possible to have ...
Score of 0
1 answer
277 views

I have applications needs to give each pod a public ip and expose ports on this public ip. I am trying not to use virtual machines. matellb has similar feature. But, it binds a address to a service ...
Score of 0
2 answers
659 views

The following code will create one yaml file dist/clusterip.k8s.yaml contains all my defines of deployment and statefulset, is there way to separate different files in output such as dist/clusterip....
Score of 0
0 answers
284 views

I have a simple Statefulset with 3 replicas/pods. the pg-master-0 is the actual master and the rest (pg-master-1 and pg-master2) are standby servers or slaves. Please ignore the naming i'll be working ...
Score of 0
4 answers
2635 views

I mean, I have an application which is already dockerized, can I provide a cloudformation template to deploy it on the EKS cluster of my client?