8 messages
Xu Pengfeiover 2 years ago
📣📣 KCL Biweekly Newsletter | KCL v0.5.1 and v0.5.2 is out! https://medium.com/@xpf6677/kcl-biweekly-newsletter-kcl-v0-5-1-and-v0-5-2-is-out-a900ce4491e
OliverSover 2 years ago
Has anyone tried kamus (https://github.com/Soluto/kamus) for kubernetes secrets management? How does it compare to the more mature external-secrets (https://github.com/external-secrets/external-secrets)?
Xu Pengfeiover 2 years ago
I just published a blog on medium about the landscape of configuration programming language. https://medium.com/dev-genius/the-landscape-of-declarative-configuration-55bb85d6997b Welcome to read and provide feedback ❤️
Xu Pengfeiover 2 years ago
I just published a blog on medium about KPM and docker hub. https://medium.com/stackademic/just-4-steps-use-docker-hub-to-store-and-share-your-kubernetes-configuration-package-a18bb1e7ceb7 《Just 4 steps, use Docker Hub to store and share your Kubernetes configuration package》. Welcome to read and provide feedback ❤️
Milosbover 2 years ago
Did you combine istio service-mesh with another gateway instead using istio gateway?
I already have apisix in place as api gateway with all configs, but want to introduce service mesh for mtls, and authorization policies, but really not sure what is the right way to go.
I already have apisix in place as api gateway with all configs, but want to introduce service mesh for mtls, and authorization policies, but really not sure what is the right way to go.
Alec Fongover 2 years ago
Hi All!
I’m using this EKS Terraform module https://github.com/cloudposse/terraform-aws-eks-cluster
It hasn’t changed much but it suddenly started throwing this error:
Have any of you seen this? Where should I be looking to debug this
I’m using this EKS Terraform module https://github.com/cloudposse/terraform-aws-eks-cluster
It hasn’t changed much but it suddenly started throwing this error:
│ Error: configmaps "aws-auth" is forbidden: User "system:anonymous" cannot get resource "configmaps" in API group "" in the namespace "kube-system"
│
│ with module.eks_cluster.kubernetes_config_map.aws_auth_ignore_changes[0],
│ on .terraform/modules/eks_cluster/auth.tf line 115, in resource "kubernetes_config_map" "aws_auth_ignore_changes":
│ 115: resource "kubernetes_config_map" "aws_auth_ignore_changes" {Have any of you seen this? Where should I be looking to debug this
idan leviover 2 years ago(edited)
Hey all !!
Im working on Postgres backup job, basically i want to create a job that run
When i run that command from outside of the cluster (with nginix endpoint or port-fowrded endpoint AS the cluster endpoint) all work great, when i try to run the exec same command from the job (inside of the k8s env) it looks like it stuck with no connectivity between the cluster to the job’s pod (with k8s service/nginix as cluster endpoint), Although that telnet is working between the two.
Is someone is familiar with that issue ? maybe it something to related port types of the service??
Im working on Postgres backup job, basically i want to create a job that run
pg_dump command and backup the Postgres cluster that sits on another pod in the same k8s env.When i run that command from outside of the cluster (with nginix endpoint or port-fowrded endpoint AS the cluster endpoint) all work great, when i try to run the exec same command from the job (inside of the k8s env) it looks like it stuck with no connectivity between the cluster to the job’s pod (with k8s service/nginix as cluster endpoint), Although that telnet is working between the two.
Is someone is familiar with that issue ? maybe it something to related port types of the service??
M3irfover 2 years ago
Hi all
I have a question regarding Kubernetes & Fluentd & Prometheus
I'm trying to configure podMonitor to collect metrics from Fluentd pods in my cluster
this is the YAML file that I wrote, (I have changed it multiple times without success)
In the Prometheus UI I see the target but I don't see any metrics from the pods
any idea what I did wrong in the configuration
when I'm exec to the pods and running curl <HTTP://localhost:24231/metrics>; I'm getting the metrics
I have in my cluster
prometheuse-operator, fluentd-producer (which I want to collect metrics)
Thanks
I have a question regarding Kubernetes & Fluentd & Prometheus
I'm trying to configure podMonitor to collect metrics from Fluentd pods in my cluster
this is the YAML file that I wrote, (I have changed it multiple times without success)
apiVersion: <http://monitoring.coreos.com/v1|monitoring.coreos.com/v1>
kind: PodMonitor
metadata:
name: fluentd-prometheus-pm
labels:
app: fluentd-kafka-producer-pm
spec:
namespaceSelector:
matchNames:
- fluentd-procuder
selector:
matchLabels:
app: fluentd-kafka-producer
podMetricsEndpoints:
- port: metrics
path: '/metrics'
scheme: 'http'
interval: '5s' In the Prometheus UI I see the target but I don't see any metrics from the pods
any idea what I did wrong in the configuration
when I'm exec to the pods and running curl <HTTP://localhost:24231/metrics>; I'm getting the metrics
I have in my cluster
prometheuse-operator, fluentd-producer (which I want to collect metrics)
Thanks