gohmc

Results 10 comments of gohmc

Sometime the Alpine Linux can incur unexpected behavior. Try build with latest Alpine release or replace it with Ubuntu/Debian.

> hey @andrevtg, thx for helping out and adding some alternatives. Just wanted to mention that it's not necessary to run a container with `socat` in the PWD instances in...

Try this, tested on node version to date (12.13.1): 1. Update your swagger-express-mw: "swagger-express-mw": "^0.7.0" 2. Add swagger_params_parser to swagger_controllers at config/default.yaml ... # pipe for all swagger-node controllers swagger_controllers:...

While eksctl allows `node-role.kubernetes.io` but the CF EKS module `AWS::EKS::Nodegroup/ManagedNodeGroup` rejected it. @TBBle has well explained the issue [here](https://github.com/weaveworks/eksctl/issues/2363#issuecomment-830738269).

> @bryantbiggs so it seems 🤦. The issue in the case of EKS managed node groups seems to be that EKS autogenerates a security group that already has the `kubernetes.io/cluster/${var.cluster_name}`...

> > i have the same issue, any solution? the k8s sa is into cert-manager namespace but certificate is defined in diff namespace (not cert-manager namespace) the AWS role has...

`The EKS Pod Identity Agent uses the hostNetwork of the node and it uses port 80` Interesting but may pose challenge to meet stringent security requirement in some environments. The...

Another option is create new MNG with upgraded AMI and then migrate workload to the new MNG. Finally scale down and delete the old MNG. This way is faster and...

hi @bryantbiggs , This issue can be avoided with `authentication_mode` set to CONFIG_MAP, but because [bootstrap_cluster_creator_admin_permissions](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/main.tf#L43) is hardcoded to false; the provider raise error during apply: `bootstrapClusterCreatorAdminPermission` must be true...

Using the built-in [example here](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/examples/eks_managed_node_group/main.tf#L38): ``` # Comment this line to not using EKS access management control yet. default to false. # enable_cluster_creator_admin_permissions = true # Add this line for...