Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Old dependency on cf-operator image, still needed? #52

Merged
merged 4 commits into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ jobs:
# Set USE_KIND so build-image loads image into KinD
- export USE_KIND="true"

# Set CF-OPERATER Docker Image Tag
- export DOCKER_IMAGE_TAG="v0.4.2-0.g604925f0"

# Download and install helm
- curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
- chmod 700 get_helm.sh
Expand Down
1 change: 1 addition & 0 deletions pkg/kube/controllers/quarksjob/job_creator.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ func (j jobCreatorImpl) Create(ctx context.Context, qJob qjv1a1.QuarksJob, names
// Set serviceaccount to the container
template.Spec.Template.Spec.Volumes = append(template.Spec.Template.Spec.Volumes, *serviceAccountVolume)

ctxlog.Debugf(ctx, "Add persist output container, using DOCKER_IMAGE_TAG=%s", sharedcfg.GetOperatorDockerImage())
// Create a container for persisting output
outputPersistContainer := corev1.Container{
Name: "output-persist",
Expand Down