4339 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 31 / 217
Newer►
  • Note: Repérer les inconsistences de mapping entre différents index

    Exemple pour le field 'status' :

    for index in $(cat liste_index); do echo $index; curl -s http://elastic/$index/_mapping | jq ".\"$index\".mappings.doc.properties.status"; done

    March 21, 2019 at 4:48:12 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?ggBAsw
    elasticsearch filebeat
  • johanhaleby/kubetail: Bash script to tail Kubernetes logs from multiple pods at the same time
    March 20, 2019 at 2:03:39 PM GMT+1 - permalink - archive.org - https://github.com/johanhaleby/kubetail
    k8s logs
  • tektoncd/pipeline: A K8s-native Pipeline resource.
    March 17, 2019 at 5:16:29 PM GMT+1 - permalink - archive.org - https://github.com/tektoncd/pipeline
    cicd k8s
  • thumbnail
    philpep/imago: Ensure kubernetes pods run on latest images builds from the docker registry

    Peut être utile dans certains cas, je me le garde de côté

    March 15, 2019 at 10:35:45 AM GMT+1 - permalink - archive.org - https://github.com/philpep/imago
    k8s latest
  • Job Application for Full Stack Engineer (Growth) at DataCamp

    Should have a clear understanding of standard web development processes and best practices
    Is a strong communicator who can explain technical concepts in an understandable manner
    Is comfortable rapidly writing throwaway code that gets the job done -- even if it’s not well-optimized, well-tested, or well-architected
    Cares more about the business impact of the work than the elegance of the technical solution
    Must be detail-oriented, self-organized and capable of tracking multiple tasks simultaneously

    Lol

    March 15, 2019 at 8:10:32 AM GMT+1 - permalink - archive.org - https://boards.greenhouse.io/datacamp/jobs/1482036
    lol
  • Learn Kubernetes using Interactive Browser-Based Labs | Katacoda
    March 14, 2019 at 5:34:27 PM GMT+1 - permalink - archive.org - https://www.katacoda.com/courses/kubernetes
    k8s tutorial
  • kelseyhightower/kubernetes-the-hard-way: Bootstrap Kubernetes the hard way on Google Cloud Platform. No scripts.
    March 14, 2019 at 5:33:30 PM GMT+1 - permalink - archive.org - https://github.com/kelseyhightower/kubernetes-the-hard-way
    hard k8s tutorial
  • Yelp/elastalert: Easy & Flexible Alerting With ElasticSearch

    une alternative free

    March 11, 2019 at 4:00:32 PM GMT+1 - permalink - archive.org - https://github.com/Yelp/elastalert
    alert elasticsearch
  • thumbnail
    Using Helm without Tiller - Giant Swarm

    Pour obtenir les yaml sans installer un helm chart :

    helm template \
    --values ./values/prometheus.yaml \
    --output-dir ./manifests \
    ./charts/prometheus

    March 11, 2019 at 3:25:18 PM GMT+1 - permalink - archive.org - https://blog.giantswarm.io/what-you-yaml-is-what-you-get/
    helm k8s
  • awesome-kubernetes/README.md at master · ramitsurana/awesome-kubernetes · GitHub

    Via arnaudb

    March 10, 2019 at 2:37:34 PM GMT+1 - permalink - archive.org - https://github.com/ramitsurana/awesome-kubernetes/blob/master/README.md#monitoring
    k8s resources
  • Kubernetes-Certified-Administrator/README.md at master · walidshaari/Kubernetes-Certified-Administrator · GitHub

    Via arnaudb

    March 10, 2019 at 2:36:00 PM GMT+1 - permalink - archive.org - https://github.com/walidshaari/Kubernetes-Certified-Administrator/blob/master/README.md
    k8s resources
  • thumbnail
    kube-eagle/README.md at master · google-cloud-tools/kube-eagle · GitHub

    Via arnaudb

    March 10, 2019 at 2:32:55 PM GMT+1 - permalink - archive.org - https://github.com/google-cloud-tools/kube-eagle/blob/master/README.md
    exporter k8s prometheus
  • Can anyone talk about the positives/negatives of Operators v/s Helm Charts? Fro... | Hacker News
    March 10, 2019 at 10:57:43 AM GMT+1 - permalink - archive.org - https://news.ycombinator.com/item?id=16969495
    helm k8s operator
  • coreos/prometheus-operator: Prometheus Operator creates/configures/manages Prometheus clusters atop Kubernetes

    Prometheus Operator vs. kube-prometheus

    The Prometheus Operator makes the Prometheus configuration Kubernetes native and manages and operates Prometheus and Alertmanager clusters. It is a piece of the puzzle regarding full end-to-end monitoring.

    kube-prometheus combines the Prometheus Operator with a collection of manifests to help getting started with monitoring Kubernetes itself and applications running on top of it.

    https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus

    March 9, 2019 at 9:41:15 PM GMT+1 - permalink - archive.org - https://github.com/coreos/prometheus-operator
    k8s prometheus
  • bash - watch command alias expansion - Unix & Linux Stack Exchange
    March 8, 2019 at 6:05:06 PM GMT+1 - permalink - archive.org - https://unix.stackexchange.com/questions/25327/watch-command-alias-expansion
    alias watch
  • Controlling nginx

    Pour un graceful shutdown de nginx, il faut un SIGQUIT
    Kubernetes envoie du SIGTERM alors on peut utiliser un preStop script pour être + cool
    https://kubernetes.io/docs/tasks/configure-pod-container/attach-handler-lifecycle-event/#define-poststart-and-prestop-handlers

    On peut aussi utiliser le preStop pour s'assuret que le container nginx sidecar s'arrête bien avant l'autre container en posant un lock dans un shared volume. Le preStop de l'autre container va attendre que le lock soit supprimé pour se couper. Le preStop du nginx va supprimer le lock quand il a bien terminé.

    On crée le lock dans un postStart

    via Meetup k8s bbc speaker

    March 8, 2019 at 12:03:45 PM GMT+1 - permalink - archive.org - http://nginx.org/en/docs/control.html
    k8s nginx poststart prestop sidecar
  • A Read Only Kubernetes Dashboard | blog.cowger.us

    read-only

    March 8, 2019 at 11:40:45 AM GMT+1 - permalink - archive.org - http://blog.cowger.us/2018/07/03/a-read-only-kubernetes-dashboard.html
    dashboard k8s readonly
  • Kubernetes Event Notifications to a Slack Channel- Part V
    March 7, 2019 at 6:04:04 PM GMT+1 - permalink - archive.org - https://blog.powerupcloud.com/kubernetes-event-notifications-to-a-slack-channel-part-v-a9634b39db8f
    events k8s slack
  • Note: EKS worker nodes endpoint for prometheus

    tcp6 0 0 :::61678 :::* LISTEN 0 81586 32466/aws-k8s-agent

    Tous les nodes exposent ça, c'est cool, ils auraient pu en parler dans la doc ;)

    curl localhost:61678/metrics

    March 7, 2019 at 12:34:55 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?WwXrCQ
    eks k8s metric metrics prometheus
  • thumbnail
    kubernetes-incubator/external-dns: Configure external DNS servers (AWS Route53, Google CloudDNS and others) for Kubernetes Ingresses and Services

    marche bien, j'ai quand même créé une nouvelle zone et donné les droits dans le role IAM seulement sur celle-ci pour ne pas tout mélanger
    Il faut désactiver le upsert only sinon les entrées DNS ne sont pas supprimées quand le service est supprimé et quand on le recrée, il n'arrive pas à update

    March 6, 2019 at 6:10:04 PM GMT+1 * - permalink - archive.org - https://github.com/kubernetes-incubator/external-dns
    dns k8s
Links per page: 20 50 100
◄Older
page 31 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation