File tree Expand file tree Collapse file tree 5 files changed +28
-7
lines changed
incubating/argocd-app-status Expand file tree Collapse file tree 5 files changed +28
-7
lines changed Original file line number Diff line number Diff line change
1
+ build
2
+ dist
3
+ argocd_app_status.spec
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## [ 1.1.3] - 2024-11-20
3
+
4
+ ### Fixed
5
+ * CVE-2024 -45491 - upgrade libexpat1
6
+ * CVE-2024 -45492 - upgrade libexpat1
7
+ * CVE-2024 -37371 - upgrade libkrb5
8
+ * CVE-2023 -45853 - upgrade zlib1g
9
+
2
10
## [ 1.1.2] - 2023-09-18
3
11
### Changed
4
12
8
16
9
17
## [ 1.1.1] - 2023-06-03
10
18
### Changed
11
- - Upgrade pythpn version to 3.11.3
19
+ - Upgrade python version to 3.11.3
12
20
13
21
### Fixed
14
22
- Link for application
Original file line number Diff line number Diff line change 1
- FROM python:3.11.5-slim-bookworm
1
+ # stage 1 Build
2
+ FROM python:3.13.0-slim-bookworm AS builder
2
3
WORKDIR /app
3
4
COPY requirements.txt requirements.txt
4
5
RUN pip3 install -r requirements.txt
5
6
COPY queries queries/
6
7
COPY argocd_app_status.py argocd_app_status.py
7
- CMD [ "python3" , "argocd_app_status.py" ]
8
+
9
+ RUN pip3 install pyinstaller
10
+ RUN pyinstaller --onefile app_status.py
11
+
12
+ # stage 2 : Prod
13
+ FROM scratch
14
+ WORKDIR /app
15
+ COPY queries queries/
16
+ COPY dist/argocd_app_status argocd_app_status
17
+ CMD argocd_app_status
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ docopt==0.6.2
5
5
gql == 3.4.0
6
6
graphql-core == 3.2.3
7
7
idna == 3.4
8
- multidict == 6.0.4
8
+ multidict == 6.1.0
9
9
pipreqs == 0.4.13
10
10
requests == 2.31.0
11
11
requests-toolbelt == 0.10.1
Original file line number Diff line number Diff line change 1
1
kind : step-type
2
2
metadata :
3
3
name : argocd-app-status
4
- version : 1.1.2
4
+ version : 1.1.3
5
5
isPublic : true
6
6
description : Get Argo CD App status and return its sybc and health status
7
7
sources :
61
61
},
62
62
"IMAGE_TAG": {
63
63
"type": "string",
64
- "default": "1.1.2 ",
64
+ "default": "1.1.3 ",
65
65
"description": "OPTIONAL - To overwrite the tag to use"
66
66
}
67
67
}
97
97
[[- end ]]
98
98
commands:
99
99
- cd /app
100
- - python3 argocd_app_status.py
100
+ - ./argocd_app_status
101
101
delimiters :
102
102
left : ' [['
103
103
right : ' ]]'
You can’t perform that action at this time.
0 commit comments