Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Instructions for using compose setup with minikube. #313

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from

Commits on Apr 28, 2017

  1. Configuration menu
    Copy the full SHA
    254a0d5 View commit details
    Browse the repository at this point in the history
  2. More progress toward k8 compat. for compose setup.

    - Use volumes_from instead of volumes so kompose can match up paths properly.
    - Mount pgadmin4 without volumes when using kompose for now.
    - Annotate the services that should be exposed externally with kompose labels in the source compose files.
    jmchilton committed Apr 28, 2017
    Configuration menu
    Copy the full SHA
    93788a3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b805504 View commit details
    Browse the repository at this point in the history
  4. Switch docker-compose.yml to match up service and hostnames.

    This is helpful for Kompose.
    jmchilton committed Apr 28, 2017
    Configuration menu
    Copy the full SHA
    a7400b8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fde887c View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2017

  1. Adapt configure_slurm.py to allow Kubernetes style naming.

    Relevant pieces of SLURM docs:
    
    ```
    Node names can have up to three name specifications: NodeName is the name used by all Slurm tools when referring to the node, NodeAddr is the name or IP address Slurm uses to communicate with the node, and NodeHostname is the name returned by the command /bin/hostname -s. Only NodeName is required (the others default to the same name), although supporting all three parameters provides complete control over naming and addressing the nodes. See the slurm.conf man page for details on all configuration parameters.
    ```
    
    ```
    ControlAddr
    Name that ControlMachine should be referred to in establishing a communications path. This name will be used as an argument to the gethostbyname() function for identification. For example, "elx0000" might be used to designate the Ethernet address for node "lx0000". By default the ControlAddr will be identical in value to ControlMachine.
    ```
    jmchilton committed Apr 29, 2017
    Configuration menu
    Copy the full SHA
    191c59f View commit details
    Browse the repository at this point in the history