Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alerta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
alerta
Compare revisions
388bb24f750d45a52f5ac100803f4e49b72c48a8 to d9c4c771740b819e2cc9094e6f5eb10f2c3efe70
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/alerta
Select target project
No results found
d9c4c771740b819e2cc9094e6f5eb10f2c3efe70
Select Git revision
Swap
Target
ansible/roles/alerta
Select target project
ansible/roles/alerta
1 result
388bb24f750d45a52f5ac100803f4e49b72c48a8
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
ansible-roles/alerta#10 Pin API and web-ui version and no longer use master
· d9c4c771
jurgenhaas
authored
4 years ago
d9c4c771
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
defaults/main.yml
+2
-0
2 additions, 0 deletions
defaults/main.yml
templates/api/Dockerfile
+1
-1
1 addition, 1 deletion
templates/api/Dockerfile
templates/webui/Dockerfile
+1
-1
1 addition, 1 deletion
templates/webui/Dockerfile
with
4 additions
and
2 deletions
defaults/main.yml
0 → 100644
View file @
d9c4c771
alerta_version_api
:
8.1.0
alerta_version_web_ui
:
8.0.1
This diff is collapsed.
Click to expand it.
templates/api/Dockerfile
View file @
d9c4c771
FROM
alerta/alerta-web
FROM
alerta/alerta-web
:{{ alerta_version_api }}
USER
root
COPY
./plugins/*.py /tmp/plugins/
...
...
This diff is collapsed.
Click to expand it.
templates/webui/Dockerfile
View file @
d9c4c771
...
...
@@ -3,7 +3,7 @@ FROM node:lts-alpine as build-stage
RUN
apk add
--no-cache
git
WORKDIR
/app
ADD
https://github.com/alerta/alerta-webui/archive/
master
.tar.gz /tmp/webui.tar.gz
ADD
https://github.com/alerta/alerta-webui/archive/
v{{ alerta_version_web_ui }}
.tar.gz /tmp/webui.tar.gz
RUN
tar
zxvf /tmp/webui.tar.gz
-C
/app
--strip-components
=
1
RUN
npm
install
COPY
.env .
...
...
This diff is collapsed.
Click to expand it.