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

Ensure we copy plugins.yaml for AIO and Cloud Foundry #4841

Merged
merged 1 commit into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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: 3 additions & 0 deletions deploy/Dockerfile.all-in-one
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/config.prope
# User Invite templates
COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/templates /srv/templates

# Plugins.yaml configuration
COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/plugins.yaml /srv/plugins.yaml

# Enable persistence features if canary build flag is set
RUN if [ "x$CANARY_BUILD" != "x" ] ; then printf "\nFORCE_ENABLE_PERSISTENCE_FEATURES=true\n" >> /srv/config.properties ; fi

Expand Down
3 changes: 3 additions & 0 deletions deploy/cloud-foundry/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ cp src/jetstream/jetstream .
# Copy the user invite templates
cp -R src/jetstream/templates ./templates

# Copy plugins.yaml
cp src/jetstream/plugins.yaml .

# Back-end serves static resources from ui folder not dist
mv dist ui

Expand Down