Commit 517ecc73 authored by Prout, Ryan's avatar Prout, Ryan
Browse files

remove dask and jupyterlab

parent fb507273
Loading
Loading
Loading
Loading

charts/dask/Chart.yaml

deleted100644 → 0
+0 −4
Original line number Diff line number Diff line
apiVersion: v1
description: A Helm chart example for dask
name: dask
version: 1.0.0

charts/dask/Dockerfile

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
FROM registry.apps.marble.ccs.ornl.gov/stf007/python-36-centos7:latest

RUN pip install --upgrade pip
RUN pip install dask distributed
RUN pip install numpy
#RUN pip install jupyterlab

RUN yum -y update \
    && yum -y install curl bzip2 \
    && curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \
    && bash /tmp/miniconda.sh -bfp /usr/local/ \
    && rm -rf /tmp/miniconda.sh \
    && conda install -y python=3 \
    && conda update conda \
    && conda clean --all --yes \
    && rpm -e --nodeps curl bzip2 \
    && yum clean all

charts/dask/README.md

deleted100644 → 0
+0 −0

Empty file deleted.

+0 −16
Original line number Diff line number Diff line
{{/*
Expand the name of the chart.
*/}}
{{- define "{{ .Values.dask.name }}.name" -}}
{{- default .Release.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}

{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
*/}}
{{- define "{{ .Values.dask.name }}.fullname" -}}
{{- $name := default "{{ .Values.dask.name }}" .Values.nameOverride -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
+0 −36
Original line number Diff line number Diff line
apiVersion: build.openshift.io/v1
kind: BuildConfig
metadata:
  labels:
    build: dask_test
  name: dask
spec:
  nodeSelector: null
  output:
    to:
      kind: ImageStreamTag
      name: 'dask_test:latest'
  postCommit: {}
  resources: {}
  runPolicy: Serial
  source:
    git:
      ref: dask_test
      uri: 'https://code.ornl.gov/ryu/slate_helm_examples.git'
    type: Git
  triggers: []
  strategy:
    dockerStrategy:
      forcePull: true
      dockerfilePath: charts/dask/Dockerfile
      env:
        - name: K8S_NAMESPACE
          valueFrom:
            fieldRef:
              apiVersion: v1
              fieldPath: metadata.namespace
      from:
        kind: DockerImage
        name: 'centos/python-36-centos7:latest'
    type: Docker
Loading