-
Notifications
You must be signed in to change notification settings - Fork 691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kubeseal does not respond #1447
Comments
Hi @druskus20 I just tried to verify the issue in an EKS cluster but I cannot reproduce it. Did you try the fetch-cert command to check the connectivity?
Also, I executed your same command and it works for me: Please notice that I changed the controller name to the default Regards |
Also, could your issue be related to this one? #1450 (comment) |
Hi @agarcia-oss I tried to run Here you can see how, executing a kubeseal command with the wrong namespace or name results in an error message. I also checked the |
Can you try the same fetch-certificate command but the the verbose option in kubeseal? This should give you a full log of the request to the cluster from kubeseal. |
@druskus20 cc @agarcia-oss If you use module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "20.8.3"
# ...
node_security_group_additional_rules = {
# Allow ingresses from control plane to worker nodes
ingress_from_control_plane = {
type = "ingress"
# Feel free to change these to your desired ports
# Port `0` and protocol `-1` mean that I trust the control plane enough to allow ingresses of any ports & protocols to my worker nodes
from_port = 0
to_port = 0
protocol = "-1"
# `cluster_security_group` is the security group that control plane uses
source_cluster_security_group = true
}
}
# ...
} By default I got the same problem and after adding the above security group |
@agarcia-oss @metalwhale |
I believe I figured out why:
I had this rule configured on the cluster security group, instead of the node security group. Thanks! |
Which component:
chart 2.14.2 (and others)
kubseal: 0.25 (and previous)
Describe the bug
Same issue as: #317 (CLOSED)
The following command does not respond:
The suggestion by this user works:
#317 (comment)
Expected behavior
Kubeseal seals my secret a.yaml and prints it to screen.
Additional context
I believe the issue is not yet resolved, hence why I am opening a new one.
The text was updated successfully, but these errors were encountered: