4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 4 / 6
Newer►
119 results tagged k8s x
  • Note: core dns

    Un cluster EKS est livré avec un Deployment pour core dns avec 2 replicas

    ça suffit pour commencer, mais avec beaucoup de pods qui tournent on a commencé à avoir des erreurs DNS

    On a passé le replicas à 5 et tout va mieux, plus d'erreurs

    https://github.com/kubernetes/kubernetes/issues/68321

    April 3, 2019 at 12:14:49 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/?5m2syA
    dns eks k8s
  • Note: Define requests and limits

    Tips :

    start with low request and high limits

    observe..

    increase request to request what needed in normal processing
    lower limits to... what your strategy is. It can be 10% more than request for example or the same than request if you want to be safe

    April 3, 2019 at 11:11:25 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?O-2Lkw
    k8s limit request resources
  • Introducing Kubebot: a Kubernetes bot for Slack – Harbur Cloud Solutions
    March 29, 2019 at 11:42:39 AM GMT+1 - permalink - archive.org - https://blog.harbur.io/introducing-kubebot-a-kubernetes-bot-for-slack-2da770fb95d9
    bot k8s
  • thumbnail
    amazon-eks-ami/eni-max-pods.txt at master · awslabs/amazon-eks-ami

    max pods by ec2 instance type

    March 28, 2019 at 3:11:23 PM GMT+1 - permalink - archive.org - https://github.com/awslabs/amazon-eks-ami/blob/master/files/eni-max-pods.txt
    eks eni k8s pod
  • Note: Kubernetes monitoring

    Pas toujours simple de s'y retrouver :
    https://github.com/coreos/prometheus-operator
    https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus

    La différence entre ces deux là est expliqué dans le README : https://github.com/coreos/prometheus-operator#prometheus-operator-vs-kube-prometheus

    Ce qu'il faut retenir, c'est que si l'on veut une solution end-to-end de monitoring de son cluster, il faut utiliser kube-prometheus qui installe le prometheus operator et plein d'autres choses. D'après le Readme de kube prometheus, le projet s'utilise comme une lib qui permet de générer des manifests yaml qu'on va ensuite apply.

    Le projet a aussi été packagé avec helm. Si on veut custom les manifests, ça a l'air plus facile à utiliser que le jsonnet de kube prometheus :
    https://github.com/helm/charts/tree/master/stable/prometheus-operator

    March 28, 2019 at 10:41:32 AM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?z1yAkg
    k8s monitoring
  • Istio / What is Istio?
    March 27, 2019 at 9:14:23 PM GMT+1 - permalink - archive.org - https://istio.io/docs/concepts/what-is-istio/
    k8s
  • Keycloak
    March 27, 2019 at 9:02:30 PM GMT+1 - permalink - archive.org - https://www.keycloak.org/
    iam k8s
  • kiam/README.md at master · uswitch/kiam · GitHub

    Une alternative à kube2iam qui est apparemment plus secure

    March 27, 2019 at 8:46:01 PM GMT+1 * - permalink - archive.org - https://github.com/uswitch/kiam/blob/master/README.md
    iam k8s
  • thumbnail
    GO et Kubernetes, les recettes du nouveau LeBonCoin
    March 26, 2019 at 1:49:32 PM GMT+1 - permalink - archive.org - https://www.lemagit.fr/etude/GO-et-Kubernetes-les-recettes-du-nouveau-LeBonCoin
    go k8s leboncoin
  • thumbnail
    Installing kube2iam in AWS Kubernetes EKS Cluster | Carlos Sanchez's Weblog
    March 26, 2019 at 9:33:47 AM GMT+1 - permalink - archive.org - https://blog.csanchez.org/2018/11/14/installing-kube2iam-in-aws-kubernetes-eks-cluster/
    iam k8s
  • boz/kail: kubernetes log viewer

    un projet similaire à kubetail

    March 25, 2019 at 10:34:58 PM GMT+1 - permalink - archive.org - https://github.com/boz/kail
    k8s kubetail log tail
  • astefanutti/kubebox: ⎈❏ Terminal and Web console for Kubernetes

    à voir ce que ça donne comparé à k9s

    March 25, 2019 at 10:15:10 PM GMT+1 - permalink - archive.org - https://github.com/astefanutti/kubebox
    k8s
  • hjacobs/kube-ops-view: Kubernetes Operational View - read-only system dashboard for multiple K8s clusters

    Je l'avais perdu, je l'ai retrouvé

    March 25, 2019 at 10:14:09 PM GMT+1 - permalink - archive.org - https://github.com/hjacobs/kube-ops-view
    k8s monitoring
  • thumbnail
    Removing spec.replicas of the Deployment resets replicas count to single replica · Issue #67135 · kubernetes/kubernetes

    Si on a créé un Deployment avec un apply -f en spécifiant le champs replicas et qu'on décide d'enlever ce champs (pour ne plus qu'il soit géré de manière statique mais plutot dynamique avec un HPA par exemple)

    Il faut faire attention car le comportement par défaut va définir replicas à 1

    Pour éviter ça, avant de apply le Deployment sans le champs replicas, il faut faire un :

    kubectl apply edit-last-applied deployment my-deployment

    Et supprimer le champs replicas

    March 25, 2019 at 5:38:01 PM GMT+1 - permalink - archive.org - https://github.com/kubernetes/kubernetes/issues/67135
    hpa k8s replicas
  • Horizontal Pod Autoscaler Walkthrough - Kubernetes

    Pour que ça marche bien il faut que ses CPU requests soient cohérents

    March 25, 2019 at 5:02:12 PM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/
    autoscaling k8s
  • thumbnail
    kubernetes/autoscaler: Autoscaling components for Kubernetes

    Lorsque le HPA (horizontal pod autoscaler) démarre trop de pods, ces pods vont être en pending. Il faut plus de nodes pour les faire tourner.

    C'est le but du kubernetes autoscaler qui va reconfigurer l'autoscaling group des nodes pour en ajouter/enlever suivant l'usage

    https://eksworkshop.com/scaling/deploy_ca/

    Le pod qui fait tourner ça doit avoir les bon droits IAM pour pouvoir modifier l'ASG
    voir : https://blog.csanchez.org/2018/11/14/installing-kube2iam-in-aws-kubernetes-eks-cluster/

    March 25, 2019 at 5:00:37 PM GMT+1 * - permalink - archive.org - https://github.com/kubernetes/autoscaler
    autoscaling k8s
  • thumbnail
    Force deployment rolling-update · Issue #27081 · kubernetes/kubernetes
    kubectl patch deployment web -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"date\":\"`date +'%s'`\"}}}}}"

    mieux :
    kubectl rollout restart daemonset/filebeat-filebeat
    kubectl rollout restart deployment/web
    March 25, 2019 at 12:54:04 PM GMT+1 * - permalink - archive.org - https://github.com/kubernetes/kubernetes/issues/27081
    k8s patch rolling update
  • thumbnail
    Kubernetes Horizontal Pod & Cluster Autoscaling: All You Need to Know | Caylent
    March 22, 2019 at 6:13:44 PM GMT+1 - permalink - archive.org - https://caylent.com/kubernetes-autoscaling/
    hpa k8s
  • Configure Kubernetes Autoscaling with Custom Metrics
    March 22, 2019 at 6:13:34 PM GMT+1 - permalink - archive.org - https://docs.bitnami.com/kubernetes/how-to/configure-autoscaling-custom-metrics/
    hpa k8s
  • thumbnail
    community/horizontal-pod-autoscaler.md at master · kubernetes/community
    March 22, 2019 at 6:13:23 PM GMT+1 - permalink - archive.org - https://github.com/kubernetes/community/blob/master/contributors/design-proposals/autoscaling/horizontal-pod-autoscaler.md#autoscaling-algorithm
    hpa k8s
Links per page: 20 50 100
◄Older
page 4 / 6
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation