Skip to content
View mdorr's full-sized avatar
  • AWS
  • PHL

Highlights

  • Pro

Block or report mdorr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. k8s-autoupdater k8s-autoupdater Public

    Automatically update K8S deployments with new image versions

    Shell

  2. solar-system solar-system Public

    A three-dimensional model of the solar system.

    JavaScript 2 1

  3. viewfinder viewfinder Public

    Photo sharing inspired by 500px, built with Rails and React-Redux

    JavaScript 7

  4. Kubernetes command & args with shell... Kubernetes command & args with shell substitution
    1
    If trying to pass a startup command with env substitution to the `command`/`args` fields in a kubernetes `yml` file,
    2
    don't try to use substituition in the arguments as you normally would - that will be parsed differently. Instead,
    3
    make your life easier by using `/bin/sh -c` like in this example:
    4
          
    5
    ``` bash