4339 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 6 / 44
Newer►
  • thumbnail
    postgresql - List the database privileges using psql - Database Administrators Stack Exchange

    SELECT grantee, table_name , privilege_type
    FROM information_schema.role_table_grants
    WHERE grantee = 'readwrite'

    August 12, 2019 at 1:40:22 PM GMT+2 - permalink - archive.org - https://dba.stackexchange.com/questions/4286/list-the-database-privileges-using-psql
    grants postgresql
  • thumbnail
    pgadmin - PostgreSQL, display role members - Database Administrators Stack Exchange

    SELECT r.rolname as username,r1.rolname as "role"
    FROM pg_catalog.pg_roles r LEFT JOIN pg_catalog.pg_auth_members m
    ON (m.member = r.oid)
    LEFT JOIN pg_roles r1 ON (m.roleid=r1.oid)
    WHERE r.rolcanlogin
    ORDER BY 1;

    August 12, 2019 at 1:37:32 PM GMT+2 * - permalink - archive.org - https://dba.stackexchange.com/questions/136858/postgresql-display-role-members
    permissions postgresql role
  • terraform-aws-ecs-scheduled-task/main.tf at master · dxw/terraform-aws-ecs-scheduled-task · GitHub

    TIL : les ECS scheduled tasks sont en fait trigger par cloudwatch

    August 12, 2019 at 9:42:09 AM GMT+2 - permalink - archive.org - https://github.com/dxw/terraform-aws-ecs-scheduled-task/blob/master/main.tf
    ecs task
  • Downloads & Changelog
    August 12, 2019 at 9:40:05 AM GMT+2 - permalink - archive.org - https://omnidb.org/en/downloads-en
    client postgresql
  • thumbnail
    arl/tmux-gitbar: Git in your tmux status bar
    August 10, 2019 at 1:44:09 PM GMT+2 - permalink - archive.org - https://github.com/arl/tmux-gitbar#installation
    git tmux
  • Note: ssm links

    https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-sessions-start.html#sessions-start-ssh

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started-enable-ssh-connections.html

    August 10, 2019 at 1:43:30 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Hgv05w
    aws ssm
  • Meld

    à tester

    August 10, 2019 at 1:42:04 PM GMT+2 - permalink - archive.org - https://meldmerge.org/
    diff git merge tool
  • thumbnail
    Managing PostgreSQL users and roles | AWS Database Blog

    A faire en superuser:

    -- Revoke privileges from 'public' role
    REVOKE CREATE ON SCHEMA public FROM PUBLIC;
    REVOKE ALL ON DATABASE mydatabase FROM PUBLIC;

    -- Create schema
    CREATE SCHEMA myschema

    -- Read-only role
    CREATE ROLE readonly;
    GRANT CONNECT ON DATABASE mydatabase TO readonly;
    GRANT USAGE ON SCHEMA myschema TO readonly;
    GRANT SELECT ON ALL TABLES IN SCHEMA myschema TO readonly;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT ON TABLES TO readonly;

    -- Read/write role
    CREATE ROLE readwrite;
    GRANT CONNECT ON DATABASE mydatabase TO readwrite;
    GRANT USAGE, CREATE ON SCHEMA myschema TO readwrite;
    GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO readwrite;
    GRANT USAGE ON ALL SEQUENCES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT USAGE ON SEQUENCES TO readwrite;

    -- Users creation
    CREATE USER reporting_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER reporting_user2 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user2 WITH PASSWORD 'some_secret_passwd';

    -- Grant privileges to users
    GRANT readonly TO reporting_user1;
    GRANT readonly TO reporting_user2;
    GRANT readwrite TO app_user1;
    GRANT readwrite TO app_user2;

    August 3, 2019 at 4:10:30 PM GMT+2 * - permalink - archive.org - https://aws.amazon.com/fr/blogs/database/managing-postgresql-users-and-roles/
    aws postgresql rds
  • Enable or Disable Close Tab by Double Click in Firefox | Tutorials

    about:config
    browser.tabs.closeTabByDblclick

    August 2, 2019 at 3:25:42 PM GMT+2 - permalink - archive.org - https://www.tenforums.com/tutorials/113005-enable-disable-close-tab-double-click-firefox.html
    firefox
  • thumbnail
    avsm/docker-ssh-agent-forward: Forward SSH agent socket into a container
    July 30, 2019 at 8:26:21 AM GMT+2 - permalink - archive.org - https://github.com/avsm/docker-ssh-agent-forward
    docker mac mount ssh
  • thumbnail
    GitHub - scrooloose/nerdtree: A tree explorer plugin for vim.

    Comment j'ai fait pour me passer de nerdtree?

    July 29, 2019 at 3:50:41 PM GMT+2 - permalink - archive.org - https://github.com/scrooloose/nerdtree
    vim
  • Iterm Themes - Color Schemes and Themes for Iterm2
    July 28, 2019 at 11:43:48 AM GMT+2 - permalink - archive.org - https://iterm2colorschemes.com/
    color iterm2 mac
  • thumbnail
    GitHub - tmux-plugins/tmux-continuum: Continuous saving of tmux environment. Automatic restore when tmux is started. Automatic tmux start when computer is turned on.

    Encore mieux que tmux-resurrect

    July 25, 2019 at 8:12:01 AM GMT+2 - permalink - archive.org - https://github.com/tmux-plugins/tmux-continuum
    tmux
  • thumbnail
    How to use custom workflows and restrict actions by username · Issue #701 · runatlantis/atlantis · GitHub

    https://unix.stackexchange.com/questions/111508/bash-test-if-word-is-in-set

    July 24, 2019 at 9:17:28 AM GMT+2 * - permalink - archive.org - https://github.com/runatlantis/atlantis/issues/701
    atlantis terraform
  • AWS Fargate Pricing Calculator

    0,25 vCPU + 0,5GB = 9,010$ (1 month)

    July 23, 2019 at 6:25:07 PM GMT+2 - permalink - archive.org - http://fargate-pricing-calculator.site.s3-website-us-east-1.amazonaws.com/
    aws fargate
  • 1x Engineer
    July 18, 2019 at 7:49:35 PM GMT+2 - permalink - archive.org - https://1x.engineer/
    engineer
  • Terraform: terraform_remote_state - Terraform by HashiCorp
    July 12, 2019 at 1:54:34 PM GMT+2 - permalink - archive.org - https://www.terraform.io/docs/providers/terraform/d/remote_state.html
    aws data terraform
  • PostgreSQL: Documentation: 11: 34.15. The Password File
    July 12, 2019 at 11:22:59 AM GMT+2 - permalink - archive.org - https://www.postgresql.org/docs/current/libpq-pgpass.html
    postgresql
  • thumbnail
    Voici l'emplacement des 8 fontaines d’eau pétillante gratuites de Paris - Carnets de Week-Ends
    July 8, 2019 at 8:30:33 PM GMT+2 - permalink - archive.org - https://www.carnetsdeweekends.fr/voici-lemplacement-8-fontaines-deau-petillante-gratuites-de-paris/
    eau paris
  • thumbnail
    Announcing Amazon VPC Traffic Mirroring for Amazon EC2 Instances
    July 3, 2019 at 3:39:40 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/about-aws/whats-new/2019/06/announcing-amazon-vpc-traffic-mirroring-for-amazon-ec2-instances/
    aws mirror network
  • Note: postgre

    voir obsidian "Postgresql pg survival"

    July 3, 2019 at 2:38:58 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/?IImegQ
    postgresql
  • AWS Systems Manager Session Manager - AWS Systems Manager

    interessant

    June 28, 2019 at 10:44:14 AM GMT+2 - permalink - archive.org - https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
    aws ssh ssm
  • Frequently Asked Questions — Ansible Documentation
    June 27, 2019 at 5:28:27 PM GMT+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-configure-a-jump-host-to-access-servers-that-i-have-no-direct-access-to
    ansible bastion jump ssh
  • thumbnail
    Secure your instances with multi-factor authentication | AWS Startups Blog
    June 12, 2019 at 6:18:16 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/fr/blogs/startups/securing-ssh-to-amazon-ec2-linux-hosts/
    aws mfa ssh
  • thumbnail
    coolaj86/browser-authenticator.js: Two- / Multi- Factor Authenication (2FA / MFA / OTP) for browser JavaScript - browser-authenticator.js - CoolAJ86 on GIT
    June 12, 2019 at 3:48:16 PM GMT+2 - permalink - archive.org - https://git.coolaj86.com/coolaj86/browser-authenticator.js
    auth authenticator google mfa
  • thumbnail
    Git Tree Compare - Visual Studio Marketplace
    June 7, 2019 at 5:12:57 PM GMT+2 - permalink - archive.org - https://marketplace.visualstudio.com/items?itemName=letmaik.git-tree-compare
    git tree
  • thumbnail
    GitHub - picheli20/github-code-tree: Show the source tree on the github PR
    June 7, 2019 at 4:54:09 PM GMT+2 - permalink - archive.org - https://github.com/picheli20/github-code-tree
    github tree
  • wercker/stern: ⎈ Multi pod and container log tailing for Kubernetes
    June 7, 2019 at 8:21:23 AM GMT+2 - permalink - archive.org - https://github.com/wercker/stern
    k8s log
  • Creating a permanent link to a code snippet - GitHub Help
    June 6, 2019 at 5:44:26 PM GMT+2 - permalink - archive.org - https://help.github.com/en/articles/creating-a-permanent-link-to-a-code-snippet
    github permalink
  • thumbnail
    GitHub - pre-commit/pre-commit-hooks: Some out-of-the-box hooks for pre-commit
    June 6, 2019 at 2:43:22 PM GMT+2 - permalink - archive.org - https://github.com/pre-commit/pre-commit-hooks
    git hook pre-commit
  • thumbnail
    GitHub - antonbabenko/pre-commit-terraform: pre-commit git hooks to take care of Terraform configurations
    June 6, 2019 at 2:42:56 PM GMT+2 - permalink - archive.org - https://github.com/antonbabenko/pre-commit-terraform
    git hook pre-commit
  • pre-commit

    Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks.

    June 6, 2019 at 2:42:08 PM GMT+2 * - permalink - archive.org - https://pre-commit.com/
    git hook pre-commit
  • thumbnail
    GitHub - ovity/octotree: GitHub code tree on steroids
    June 4, 2019 at 2:28:21 PM GMT+2 - permalink - archive.org - https://github.com/ovity/octotree
    github tree
  • thumbnail
    Mozilla releases Firefox Lockwise (formerly Lockbox) add-on - gHacks Tech News

    à tester

    June 4, 2019 at 10:24:57 AM GMT+2 - permalink - archive.org - https://www.ghacks.net/2019/05/29/mozilla-releases-firefox-lockwise-formerly-lockbox-add-on/
    firefox password
  • Terraform `cidrsubnet` Deconstructed | It's Just Code
    May 31, 2019 at 6:18:07 PM GMT+2 - permalink - archive.org - http://blog.itsjustcode.net/blog/2017/11/18/terraform-cidrsubnet-deconstructed/
    network surbnet terraform
  • Tutorial: Delegate Access Across AWS Accounts Using IAM Roles - AWS Identity and Access Management

    Gestion multi compte aws

    May 30, 2019 at 10:50:22 PM GMT+2 - permalink - archive.org - https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_cross-account-with-roles.html
    account aws
  • Les meilleurs freelances tech et data à la demande | Comet
    May 25, 2019 at 9:53:12 AM GMT+2 - permalink - archive.org - https://comet.co/
    freelance
  • Deploying (AWS EC2) - Armory Spinnaker Documentation

    additional-launch-block-devices

    May 22, 2019 at 2:19:00 PM GMT+2 - permalink - archive.org - https://docs.armory.io/spinnaker-user-guides/deploying/#additional-launch-block-devices
    device ebs spinnaker
  • The XY Problem
    May 22, 2019 at 11:35:54 AM GMT+2 - permalink - archive.org - http://xyproblem.info/
    ask problem question solution
  • Velero
    May 21, 2019 at 2:36:27 PM GMT+2 - permalink - archive.org - https://velero.io/
    backup k8s
  • GitHub - weskerfoot/DeleteFB: Selenium script to delete all of your Facebook wall posts
    May 21, 2019 at 2:29:49 PM GMT+2 - permalink - archive.org - https://github.com/weskerfoot/DeleteFB
    facebook
  • thumbnail
    tmux in practice: iTerm2 and tmux – freeCodeCamp.org

    pour binder ctrl tab et shift ctrl tab pour avec next/previous window il faut un peu de bricolage :

    Dans iterm on peut créer des bindings :
    ctrl + tab --> Send hexa -> 0x01 0x6e
    shift ctrl tab --> Send hexa -> 0x01 0x70

    Ces codes hexa correspondent à l'enchainement "ctrl+a n" et "ctrl+a p"

    (tools utile : showkey -a sur linux)

    May 21, 2019 at 10:20:34 AM GMT+2 * - permalink - archive.org - https://medium.freecodecamp.org/tmux-in-practice-iterm2-and-tmux-integration-7fb0991c6c01
    iterm mac tmux
  • Security for Elasticsearch is now free | Elastic Blog

    nice!

    May 21, 2019 at 9:55:32 AM GMT+2 - permalink - archive.org - https://www.elastic.co/blog/security-for-elasticsearch-is-now-free
    es
  • GitHub - mlabouardy/komiser: Cloud Environment Inspector 👮
    May 20, 2019 at 4:52:41 PM GMT+2 - permalink - archive.org - https://github.com/mlabouardy/komiser
    aws cost
  • thumbnail
    Amazon EKS Simplifies Kubernetes Cluster Authentication
    May 20, 2019 at 4:50:05 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/about-aws/whats-new/2019/05/amazon-eks-simplifies-kubernetes-cluster-authentication/
    eks
  • thumbnail
    KubeContext/README.md at master · turkenh/KubeContext · GitHub
    May 18, 2019 at 10:14:43 PM GMT+2 - permalink - archive.org - https://github.com/turkenh/KubeContext/blob/master/README.md
    k8s mac
  • Kubernetes Operator FAQ – CloudARK – Medium
    May 17, 2019 at 10:13:18 PM GMT+2 - permalink - archive.org - https://medium.com/@cloudark/kubernetes-operator-faq-e018132c6ea2
    crd k8s operator
  • An Introduction to the Z Shell - Aliasing

    Most other shells have aliases of this kind (command aliases). However, zsh also has global aliases, which are substituted anywhere on a line. Global aliases can be used to abbreviate frequently-typed usernames, hostnames, etc.

    % alias -g me=pfalstad gun=egsirer mjm=maruchck
    % who | grep me
    pfalstad ttyp0 May 24 03:39 (mickey.Princeton)
    pfalstad ttyp5 May 24 03:42 (mickey.Princeton)
    % fm gun
    Login name: egsirer In real life: Emin Gun Sirer
    Directory: /u/egsirer Shell: /bin/sh
    Last login Thu May 23 19:05 on ttyq3 from bow.Princeton.ED
    New mail received Fri May 24 02:30:28 1991;
    unread since Fri May 24 02:30:27 1991
    % alias -g phx=phoenix.princeton.edu warc=wuarchive.wustl.edu
    % ftp warc
    Connected to wuarchive.wustl.edu.

    Here are some more interesting uses.

    % alias -g M='| more' GF='| fgrep -f ~/.friends'
    % who M # pipes the output of who through more
    % who GF # see if your friends are on
    % w GF # see what your friends are doing

    alias -g gp='|grep '

    May 15, 2019 at 9:56:53 PM GMT+2 - permalink - archive.org - http://zsh.sourceforge.net/Intro/intro_8.html
    alias zsh
  • splitting_commits
    May 15, 2019 at 5:28:21 PM GMT+2 - permalink - archive.org - https://git-scm.com/docs/git-rebase#_splitting_commits
    commit git split
  • thumbnail
    GitHub - paulirish/git-open: Type `git open` to open the GitHub page or website for a repository in your browser.
    May 15, 2019 at 5:14:55 PM GMT+2 - permalink - archive.org - https://github.com/paulirish/git-open
    git github
  • thumbnail
    Customize the Touch Bar to always show function keys or media controls

    gimme back my FXX!

    May 15, 2019 at 5:07:08 PM GMT+2 - permalink - archive.org - https://www.idownloadblog.com/2019/02/27/customizing-touch-bar-function-keys-media-controls/
    mac
  • cni-ipvlan-vpc-k8s/README.md at master · lyft/cni-ipvlan-vpc-k8s · GitHub
    May 14, 2019 at 10:56:36 PM GMT+2 - permalink - archive.org - https://github.com/lyft/cni-ipvlan-vpc-k8s/blob/master/README.md
    aws cni k8s
  • clush — clustershell 1.8.1 documentation
    May 14, 2019 at 1:30:22 PM GMT+2 - permalink - archive.org - https://clustershell.readthedocs.io/en/latest/tools/clush.html
    cluster ssh
  • thumbnail
    AWS re:Invent 2014 | (DEV307) Introduction to Version 3 of the AWS SDK for Python (Boto) - YouTube
    May 12, 2019 at 8:30:08 PM GMT+2 - permalink - archive.org - https://www.youtube.com/watch?v=Cb2czfCV4Dg
    aws boto3 python
  • thumbnail
    Configuration of a beautiful (efficient) terminal and prompt on OSX in 7minutes
    May 12, 2019 at 9:21:48 AM GMT+2 - permalink - archive.org - https://medium.com/@Clovis_app/configuration-of-a-beautiful-efficient-terminal-and-prompt-on-osx-in-7-minutes-827c29391961
    mac
  • thumbnail
    Download torrents in the cloud and stream them online - Bitport.io

    Un service a la put.io pour ceux qui n'ont pas le temps de gérer une seedbox

    May 11, 2019 at 12:42:15 PM GMT+2 - permalink - archive.org - https://bitport.io/welcome
    seedbox
  • GitHub - jolaleye/cssfx: ✨ Beautifully simple click-to-copy CSS effects
    May 10, 2019 at 3:26:17 PM GMT+2 - permalink - archive.org - https://github.com/jolaleye/cssfx
    css
  • thumbnail
    Amazon S3 Path Deprecation Plan – The Rest of the Story | AWS News Blog
    May 9, 2019 at 1:56:24 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/fr/blogs/aws/amazon-s3-path-deprecation-plan-the-rest-of-the-story/
    aws s3
  • thumbnail
    Vim: you don't need NERDtree or (maybe) netrw | George Ornbo
    May 8, 2019 at 7:09:39 PM GMT+2 - permalink - archive.org - https://shapeshed.com/vim-netrw/
    browser vim
  • thumbnail
    GitHub - camptocamp/terraboard: A web dashboard to inspect Terraform States
    May 3, 2019 at 3:44:19 PM GMT+2 * - permalink - archive.org - https://github.com/camptocamp/terraboard
    audit board terraform
  • thumbnail
    GitHub - camptocamp/terraboard: A web dashboard to inspect Terraform States
    May 3, 2019 at 3:44:19 PM GMT+2 - permalink - archive.org - https://github.com/camptocamp/terraboard
    terraform
  • Terraform Pull Request Automation | Atlantis
    May 3, 2019 at 3:37:41 PM GMT+2 - permalink - archive.org - https://www.runatlantis.io/
    terraform
  • Terraform Pull Request Automation | Atlantis
    May 3, 2019 at 3:37:41 PM GMT+2 - permalink - archive.org - https://www.runatlantis.io/
    terraform
  • Which are my biggest metrics? – Robust Perception | Prometheus Monitoring Experts
    April 30, 2019 at 5:49:13 PM GMT+2 - permalink - archive.org - https://www.robustperception.io/which-are-my-biggest-metrics
    prometheus
  • thumbnail
    GitHub - roboll/helmfile: Deploy Kubernetes Helm Charts
    April 26, 2019 at 5:02:54 PM GMT+2 - permalink - archive.org - https://github.com/roboll/helmfile
    helm k8s
  • Flagger | Flagger - Istio and App Mesh Progressive Delivery Kubernetes Operator
    April 26, 2019 at 5:02:01 PM GMT+2 - permalink - archive.org - https://flagger.app/
    istio k8s mesh
  • GitHub - tfutils/tfenv: Terraform version manager
    April 24, 2019 at 11:05:08 AM GMT+2 - permalink - archive.org - https://github.com/tfutils/tfenv
    tf
  • thumbnail
    Project Jupyter | Home
    April 19, 2019 at 10:06:29 AM GMT+2 - permalink - archive.org - https://jupyter.org/
    notebook python wiki
  • Tinder’s move to Kubernetes – Tinder Engineering – Medium
    April 17, 2019 at 10:01:50 PM GMT+2 - permalink - archive.org - https://medium.com/@tinder.engineering/tinders-move-to-kubernetes-cda2a6372f44
    k8s tinder
  • Kubernetes Liveness and Readiness Probes Revisited: How to Avoid Shooting Yourself in the Other Foot

    2/2

    April 4, 2019 at 1:53:19 PM GMT+2 - permalink - archive.org - https://blog.colinbreck.com/kubernetes-liveness-and-readiness-probes-revisited-how-to-avoid-shooting-yourself-in-the-other-foot/
    k8s liveness probe readiness
  • Kubernetes Liveness and Readiness Probes: How to Avoid Shooting Yourself in the Foot
    April 4, 2019 at 1:33:24 PM GMT+2 - permalink - archive.org - https://blog.colinbreck.com/kubernetes-liveness-and-readiness-probes-how-to-avoid-shooting-yourself-in-the-foot/
    liveness probe readiness
  • herbrandson/k8dash: Simple Kubernetes realtime dashboard and management
    April 3, 2019 at 4:22:31 PM GMT+2 - permalink - archive.org - https://github.com/herbrandson/k8dash
    dashboard k8s
  • 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
  • React95/React95: A React components library with Win95 UI

    ils sont fous ces front

    March 29, 2019 at 2:29:59 PM GMT+1 - permalink - archive.org - https://github.com/React95/React95
    react
  • 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
  • Note: vim

    current line in top of screen : z<return>
    go to next blank line (paragraph) : }

    March 28, 2019 at 10:25:20 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?jNJo8g
    vim
  • 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
    In visualization editor, add ability to change linked save search · Issue #5060 · elastic/kibana

    pas pratique, mais plus pratique que de recréer la vizualization

    This is possible if we go to Settings > Objects > Visualizations. If we edit the required visualization and replace the search ID with updated search and save the visualization object. (I found the search ID is hyphenated word if saved search consists of white spaces in the name.)

    March 27, 2019 at 2:03:58 PM GMT+1 - permalink - archive.org - https://github.com/elastic/kibana/issues/5060
    kibana
  • 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
    Prometheus adds default http port to the Host header when querying targets. · Issue #2226 · prometheus/prometheus

    prometheus uses header host with value = $host:$port ...

    March 24, 2019 at 6:01:13 PM GMT+1 - permalink - archive.org - https://github.com/prometheus/prometheus/issues/2226
    http prometheus scrape
  • Redis streams as a pure data structure - <antirez>
    March 23, 2019 at 12:40:17 PM GMT+1 - permalink - archive.org - http://antirez.com/news/128
    redis stream
  • 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
  • thumbnail
    Kubernetes HPA Autoscaling with Custom and External Metrics
    March 22, 2019 at 6:13:11 PM GMT+1 - permalink - archive.org - https://medium.com/uptime-99/kubernetes-hpa-autoscaling-with-custom-and-external-metrics-da7f41ff7846
    hpa k8s
  • thumbnail
    command line - iTerm - going one word backwards and forwards - Ask Different
    Go to Preferences... > Profiles > Keys
    Press Load Preset...
    Select Natural Text Editing
    March 22, 2019 at 4:55:00 PM GMT+1 - permalink - archive.org - https://apple.stackexchange.com/questions/154292/iterm-going-one-word-backwards-and-forwards
    iterm2 mac
  • Note: Filebeat, elasticsearch et mapping

    Filebeat utilise des template de mapping (pour chaque version de filebeat, un nouveau template est créé)
    Donc l'index créé tous les jours par filebeat a un mapping qui provient de ce template
    Il y a beaucoup de champs défini qui proviennent de la déclaration de tous les modules filebeat (https://github.com/elastic/beats/blob/master/filebeat/module/nginx/access/_meta/fields.yml)

    Si on a besoin de déclarer de nouveaux champs, on peut créer son propre template qui va matcher aussi les index filebeat-* et qui va surcharger les templates de filebeat
    Alternative : on peut vérifier que le champs n'existe pas déjà dans les champs prédéfini de filebeat. Par exemple le $status de nginx (code retour http) correspond au champs http.response.status_code
    Il suffit que le json écrit par nginx ait une clé qui correspond pour le status pour avoir le bon mapping

    https://www.elastic.co/guide/en/beats/filebeat/master/configuration-template.html

    March 21, 2019 at 5:44:18 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?MQs0iA
    elasticsearch filebeat mapping
Links per page: 20 50 100
◄Older
page 6 / 44
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation