4309 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 216
  • thumbnail
    How to create and save Chrome tab groups - The Verge
    March 29, 2023 at 10:13:57 AM GMT+2 - permalink - archive.org - https://www.theverge.com/23384844/chrome-google-tab-groups-create-save-how-to
    chrome
  • zsviczian/obsidian-excalidraw-plugin: A plugin to edit and view Excalidraw drawings in Obsidian
    March 22, 2023 at 2:39:43 PM GMT+1 - permalink - archive.org - https://github.com/zsviczian/obsidian-excalidraw-plugin
    draw excalidraw obsidian
  • Prometheus Monitoring Mixins | Monitoring Mixins
    March 21, 2023 at 12:20:44 PM GMT+1 - permalink - archive.org - https://monitoring.mixins.dev/
    mixin monitoring rules
  • thumbnail
    nvbn/thefuck: Magnificent app which corrects your previous console command.

    ahahaah
    via Thomas Lam

    March 17, 2023 at 2:42:52 PM GMT+1 - permalink - archive.org - https://github.com/nvbn/thefuck
    cmd fuck
  • thumbnail
    GitHub - SocialGouv/webseal: A static web interface to generate sealed-secrets

    ref by https://github.com/bitnami-labs/sealed-secrets

    March 17, 2023 at 10:40:50 AM GMT+1 - permalink - archive.org - https://github.com/SocialGouv/webseal
    sealed secret ui web
  • thumbnail
    A Comprehensive Guide to Structured Logging in Go | Better Stack Community

    via thomas Lac

    March 17, 2023 at 9:43:56 AM GMT+1 - permalink - archive.org - https://betterstack.com/community/guides/logging/logging-in-go/
    go log
  • thumbnail
    OPA Policy Authoring

    🤯

    March 16, 2023 at 3:25:30 PM GMT+1 - permalink - archive.org - https://academy.styra.com/courses/opa-rego
    opa
  • Year Glance App

    With this app you can get a yearly view of your google calendars

    March 15, 2023 at 8:55:34 PM GMT+1 * - permalink - archive.org - https://app.yearglance.com/
    calendar year
  • thumbnail
    kubernetes - UPGRADE FAILED: another operation (install/upgrade/rollback) is in progress - Stack Overflow

    helm ls -aA
    helm history <release>
    helm rollback <release> <revision>

    pending-upgrade

    March 15, 2023 at 10:48:10 AM GMT+1 - permalink - archive.org - https://stackoverflow.com/questions/71599858/upgrade-failed-another-operation-install-upgrade-rollback-is-in-progress
    helm pending
  • thumbnail
    TickTick:Todo list, checklist and task manager app for Android, iPhone and Web

    via daniel

    March 14, 2023 at 9:39:15 AM GMT+1 - permalink - archive.org - https://ticktick.com/?language=en_US
    app todo
  • The Kubernetes Discovery Cache: Blessing and Curse · Jonny Langefeld

    via martinho

    I had no idea such cache exists, very interesting!

    March 9, 2023 at 4:48:54 PM GMT+1 - permalink - archive.org - https://jonnylangefeld.com/blog/the-kubernetes-discovery-cache-blessing-and-curse
    cache crd kubernetes
  • thumbnail
    safety · PyPI
    March 9, 2023 at 4:30:56 PM GMT+1 - permalink - archive.org - https://pypi.org/project/safety/
    python scan security
  • thumbnail
    dagger.io
    March 8, 2023 at 10:42:31 AM GMT+1 - permalink - archive.org - https://dagger.io/
    cd ci docker
  • thumbnail
    Troubleshoot DNS resolution issues with a weighted routing policy in Route 53

    via daniel

    March 7, 2023 at 3:19:48 PM GMT+1 - permalink - archive.org - https://aws.amazon.com/premiumsupport/knowledge-center/route-53-fix-dns-weighted-routing-issue/
    route53 weighted
  • Why I Will Never Use Alpine Linux Ever Again | by Martin Heinz | Mar, 2023 | Better Programming

    via nedim

    March 7, 2023 at 9:58:21 AM GMT+1 - permalink - archive.org - https://betterprogramming.pub/why-i-will-never-use-alpine-linux-ever-again-a324fd0cbfd6
    alpine
  • thumbnail
    Does Alpine resolve DNS properly? | Purplecarrot

    via nedim

    March 7, 2023 at 9:50:21 AM GMT+1 - permalink - archive.org - https://purplecarrot.co.uk/post/2021-09-04-does_alpine-resolve_dns_properly/
    alpine dns glibc musl
  • thumbnail
    How to use PromQL joins for more effective queries of Prometheus metrics at scale | Grafana Labs
    March 3, 2023 at 10:51:27 AM GMT+1 - permalink - archive.org - https://grafana.com/blog/2021/08/04/how-to-use-promql-joins-for-more-effective-queries-of-prometheus-metrics-at-scale/
    prometheus promql
  • thumbnail
    What is AFL? Aussie Rules Explained - YouTube
    February 27, 2023 at 3:15:05 PM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?v=XMZYZcoAcU0
    afl australie soccer sport
  • Note: psp

    Hello,

    • What is changing?
      PodSecurityPolicy (PSP) was deprecated [1] in Kubernetes version 1.21 and has been removed in Kubernetes version 1.25 [2]. If you are using PSPs in your cluster, then you must migrate from PSP to the built-in Kubernetes Pod Security Standards (PSS) or to a policy as code solution before upgrading your cluster to version 1.25 to avoid interruption to your workloads.

    • What actions can customers take?
      PSP resources were used to specify a set of requirements that pods had to meet before they could be created. Since PSPs have been removed in Kubernetes version 1.25, you must replace those security controls. Two solutions can fill this need:

    1) Kubernetes Pod Security Standards (PSS)
    2) Policy-as-code solutions from the Kubernetes ecosystem

    In response to the PSP deprecation and the ongoing need to control pod security out-of-the-box, the Kubernetes community created a built-in solution with PSS [3] and Pod Security Admission (PSA) [4]. The PSA webhook implements the controls defined in the PSS. To review best practices for migrating PSPs to the built-in Pod Security Standards, see references [5] and [6].

    Policy-as-code solutions provide guardrails to guide cluster users, and prevent unwanted behaviors, through prescribed and automated controls. Policy-as-code solutions typically use Kubernetes Dynamic Admission Controllers to intercept the Kubernetes API server request flow, via a webhook call, and mutate and validate request payloads, based on policies written and stored as code. There are several open source policy-as-code solutions available for Kubernetes. To review best practices for migrating PSPs to a policy-as-code solution, see reference [7].

    You can run the following command to view the PSPs in your cluster: kubectl get psp. If you see the eks.privileged PSP in your cluster, it will be automatically migrated to PSS by Amazon EKS. No action is needed on your part.

    To summarize, if you are using PSP in your cluster, then you must migrate from PSP to the built-in Kubernetes PSS or to a policy as code solution before upgrading your cluster to version 1.25 to avoid interruptions to your workloads. EKS offers best practices for pod security and guidance for implementing pod security standards [8]. You can find details on PSP Migration in EKS documentation [1].

    If you have any questions or concerns, please reach out to AWS Support [9].

    [1] https://docs.aws.amazon.com/eks/latest/userguide/pod-security-policy-removal-faq.html
    [2] https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html#kubernetes-release-calendar
    [3] https://kubernetes.io/docs/concepts/security/pod-security-standards/
    [4] https://kubernetes.io/docs/concepts/security/pod-security-admission/
    [5] https://aws.github.io/aws-eks-best-practices/security/docs/pods/#pod-security-standards-pss-and-pod-security-admission-psa
    [6] https://kubernetes.io/docs/tasks/configure-pod-container/migrate-from-psp/
    [7] https://aws.github.io/aws-eks-best-practices/security/docs/pods/#policy-as-code-pac
    [8] https://aws.amazon.com/blogs/containers/implementing-pod-security-standards-in-amazon-eks/
    [9] https://aws.amazon.com/support

    February 17, 2023 at 1:47:31 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?KhDwSg
    kubernetes migration psp
  • Evernote release notes – Evernote Help & Learning

    The most recent version is 10.53.2. Released February 8, 2023.

    Evernote for Mac 10.53.2 is available now from the Mac App Store, or as a direct download version from our website. If you're already running the direct download version, you do not need to take any action and will see an automatic update soon.
    New

    You can now set a recurring task to be due a specific length of time after you last marked it as completed. That way, if you're running a little behind on something that needs to be done "every 30 days" (for example), the whole series will automatically update.

    Veryyyyy interesting

    February 17, 2023 at 1:44:47 PM GMT+1 * - permalink - archive.org - https://help.evernote.com/hc/en-us/articles/360058361833-Evernote-release-notes
    evernote recurring task
Links per page: 20 50 100
◄Older
page 1 / 216
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation