4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    ◄Older
    page 32 / 217
    Newer►
    • thumbnail
      jtblin/kube2iam: kube2iam provides different AWS IAM roles for pods running on Kubernetes
      March 6, 2019 at 9:54:26 AM GMT+1 - permalink - archive.org - https://github.com/jtblin/kube2iam
      eks iam k8s policy role
    • Define a Command and Arguments for a Container - Kubernetes

      dans un Dockerfile : ENTRYPOINT + CMD
      chez k8s : command + args

      March 5, 2019 at 5:14:24 PM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#define-a-command-and-arguments-when-you-create-a-pod
      cmd command docker entrypoint k8s
    • thumbnail
      Git: Find the most recent common ancestor of two branches - Stack Overflow

      git merge-base branch2 branch3
      050dc022f3a65bdc78d97e2b1ac9b595a924c3f2

      git merge-base HEAD origin/master

      March 4, 2019 at 11:49:46 AM GMT+1 * - permalink - archive.org - https://stackoverflow.com/questions/1549146/git-find-the-most-recent-common-ancestor-of-two-branches
      ancestor branch git
    • Using Environment Variables - CircleCI
      March 3, 2019 at 8:26:42 PM GMT+1 - permalink - archive.org - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables
      circleci
    • Running Docker Commands - CircleCI
      March 3, 2019 at 8:26:18 PM GMT+1 - permalink - archive.org - https://circleci.com/docs/2.0/building-docker-images/
      circleci
    • Kubernetes NodePort vs LoadBalancer vs Ingress? When should I use what?
      March 3, 2019 at 2:39:44 PM GMT+1 - permalink - archive.org - https://medium.com/google-cloud/kubernetes-nodeport-vs-loadbalancer-vs-ingress-when-should-i-use-what-922f010849e0
      k8s service services
    • A Deep Dive into Kubernetes Metrics – FreshTracks.io
      March 3, 2019 at 9:46:13 AM GMT+1 - permalink - archive.org - https://blog.freshtracks.io/a-deep-dive-into-kubernetes-metrics-b190cc97f0f6
      k8s metrics
    • thumbnail
      Liste des quartiers administratifs de Paris — Wikipédia
      March 3, 2019 at 8:50:17 AM GMT+1 - permalink - archive.org - https://fr.m.wikipedia.org/wiki/Liste_des_quartiers_administratifs_de_Paris
      map paris
    • Introduction to environments and deployments | GitLab

      Je cherchais à déployer le même build sur un env de preprod et ensuite sur la prod si le build est ok
      Ce qui se fait très bien "à l'ancienne" avec Jenkins/Bamboo :

      • on a une étape de build qui va créé un artifact
      • et une étape de deploy completement indépendante qui permet de déployer un artifact qu'on choisit sur un env en particulier

      Je ne retrouvais pas cette logique dans les outils plus récents car le deploy est toujours lié au build donc je ne voyais pas comment faire..
      La clé est dans la possibilité de pouvoir arrêter un job, de le mettre en pause pour pouvoir le déclencher plus tard si on le souhaite
      Donc pour un commit push sur un master, le workflow va se déclencher...

      • tests, builds...
      • deploy sur preprod
      • deploy sur prod en HOLD

      Si on voit que tout est ok sur preprod, on peut venir resume le deploy prod ! on va utiliser le même build qu'on a testé sur la preprod

      C'est le même principe, on veut check la preprod avant de déployer la prod en utilisant le même build, mais implémenté différement

      L'équivalent chez circleci :
      https://circleci.com/blog/manual-job-approval-and-scheduled-workflow-runs/
      https://circleci.com/docs/2.0/workflows/#holding-a-workflow-for-a-manual-approval

      Et chez Jenkins (récent) :
      https://jenkins.io/doc/pipeline/tour/deployment/#asking-for-human-input-to-proceed

      February 27, 2019 at 10:29:44 PM GMT+1 * - permalink - archive.org - https://docs.gitlab.com/ee/ci/environments.html#manually-deploying-to-environments
      cicd docker
    • Should I use Logstash or Elasticsearch ingest nodes? | Elastic

      Dans la plupart des cas, on peut maintenant oublier logstash et utiliser les ingest node (pipeline) d'elasticsearch

      EFK (Elasticsearch, Filebeat, Kibana)

      February 26, 2019 at 12:59:34 PM GMT+1 * - permalink - archive.org - https://www.elastic.co/blog/should-i-use-logstash-or-elasticsearch-ingest-nodes
      elasticsearch es
    • Note: EKS max pods by EC2

      Le nombre de pods par worker node dépend du type d'EC2 utilisé qui détermine combien d'interfaces secondaires on a à notre disposition et de combien d'ips sur chaque interfaces on peut allouer.

      Exemple avec une t2.small, on a 2 interfaces secondaires et sur chacune on peut allouer 4 ips. On peut donc lancer 8 pods maximum sur une t2.small

      Il faut aussi savoir qu'un cluster EKS va faire tourner de base quelques pods :

      • un deployment pour coredns avec un replicaset=2 par défaut
      • un daemonset spécifique à aws (awsnode)
      • un daemonset pour le kubeproxy

      Ce qui équivaut à 2 pods occupés sur chaque worker node (à cause des deux daemonset) et 2 pod supplémentaire lancé sur la totalité du cluster (pour coredns).

      Il faut aussi compter un pod pour le dashboard, un pod pour le metrics-server et surement 2 pods pour l'external-dns, sans compter les ingress

      Tout ça pour dire que ce n'est pas facile d'avoir un "petit" cluster EKS : on va vite être limité par le nombre d'ip qui est assez faible sur les EC2 les plus modestes et on va vite être obligé de lancer des EC2 supplémentaire juste pour avoir des ip

      February 24, 2019 at 5:27:40 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?j-DVoQ
      aws eks k8s
    • APIServer dry-run and kubectl diff - Kubernetes

      Too bad dry run and diff only available on 1.13
      EKS is 1.11 only atm ;-(

      February 13, 2019 at 4:24:18 PM GMT+1 - permalink - archive.org - https://kubernetes.io/blog/2019/01/14/apiserver-dry-run-and-kubectl-diff/
      eks k8s
    • Performance tuning for volume mounts (shared filesystems) | Docker Documentation

      tweak volume pour perf docker sous mac

      February 12, 2019 at 11:09:00 AM GMT+1 - permalink - archive.org - https://docs.docker.com/docker-for-mac/osxfs-caching/
      docker mac volume
    • Services - Kubernetes

      How to configure LoadBalancer (ELB) populated by k8s in aws (eks)

      February 9, 2019 at 12:12:15 PM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/concepts/services-networking/service/#elb-access-logs-on-aws
      elb k8s log
    • thumbnail
      Quickly Show/Hide Hidden Files on macOS Sierra, OS X El Capitan & Yosemite | Ian Lunn - Front-end Developer

      The Quickest Way to Show/Hide Hidden Files

      Since the release of macOS Sierra, when in Finder, it is now possible to use the shortcut:

      CMD + SHIFT + .

      February 9, 2019 at 11:34:45 AM GMT+1 - permalink - archive.org - https://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/
      files hidden mac
    • Secrets - Kubernetes

      How to use secret via env var

      February 9, 2019 at 11:09:54 AM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/concepts/configuration/secret/#using-secrets-as-environment-variables
      env k8s secret
    • k9s/README.md at master · derailed/k9s · GitHub

      via arnaudb

      February 4, 2019 at 10:29:42 PM GMT+1 - permalink - archive.org - https://github.com/derailed/k9s/blob/master/README.md
      k8s tool
    • Note: gnu sed on macos

      brew install gnu-sed
      PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"

      feel better

      January 29, 2019 at 12:47:22 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?HZ6B4w
      mac sed
    • thumbnail
      90 days of AWS EKS in Production - kubedex.com

      Un retour d'xp sur EKS

      January 29, 2019 at 11:26:09 AM GMT+1 - permalink - archive.org - https://kubedex.com/90-days-of-aws-eks-in-production/
      eks k8s
    • Kubernetes API Reference Docs
      January 27, 2019 at 11:11:48 AM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.13/#-strong-api-overview-strong-
      doc k8s object
    Links per page: 20 50 100
    ◄Older
    page 32 / 217
    Newer►
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation