File tree 7 files changed +113
-9
lines changed
7 files changed +113
-9
lines changed Original file line number Diff line number Diff line change 25
25
- name : Check Version
26
26
run : |
27
27
current_version=$(grep '^version=' pyproject.toml | cut -f2 -d= | tr -d ' ' | tr -d '"')
28
- app_version=$(grep 'appVersion:' deployment/helm/Chart.yaml | cut -f2 -d: | tr -d ' ' | tr -d '"')
28
+ app_version=$(grep 'appVersion:' deployment/helm/polder/ Chart.yaml | cut -f2 -d: | tr -d ' ' | tr -d '"')
29
29
if [[ "$current_version" != "$app_version" ]]; then
30
30
echo "❌ current version from pyproject.toml ($current_version) and appVersion from Chart.yaml ($app_version) differs";
31
31
exit 1;
74
74
75
75
- name : Run chart-testing (install)
76
76
run : ct install --chart-dirs deployment/k8s
77
- if : steps.list-changed.outputs.changed == 'true'
77
+ if : steps.list-changed.outputs.changed == 'true'
Original file line number Diff line number Diff line change 1
- .idea
2
- helm /Chart.lock
3
- .DS_STORE
1
+ # Dependency directories
2
+ node_modules /
3
+
4
+ # General files for the project
5
+ pkg /*
6
+ * .pyc
7
+ bin /*
8
+ .project
9
+ /.bin
10
+ /_test /secrets /* .json
11
+
12
+ # OSX leaves these everywhere on SMB shares
13
+ ._ *
14
+
15
+ # OSX trash
4
16
.DS_Store
17
+ .DS_STORE
5
18
6
- # Dependency directories
7
- node_modules /
19
+ # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
20
+ .idea /
21
+ * .iml
22
+
23
+ # Vscode files
24
+ .vscode
25
+
26
+ # Emacs save files
27
+ * ~
28
+ \# * \#
29
+ . \# *
30
+
31
+ # Vim-related files
32
+ [._ ]* .s [a-w ][a-z ]
33
+ [._ ]s [a-w ][a-z ]
34
+ * .un~
35
+ Session.vim
36
+ .netrwhist
37
+
38
+ # Chart dependencies
39
+ ** /charts /* .tgz
40
+
41
+ .history
Original file line number Diff line number Diff line change
1
+ # Patterns to ignore when building packages.
2
+ # This supports shell glob matching, relative path matching, and
3
+ # negation (prefixed with !). Only one pattern per line.
4
+ .DS_Store
5
+ # Common VCS dirs
6
+ .git/
7
+ .gitignore
8
+ .bzr/
9
+ .bzrignore
10
+ .hg/
11
+ .hgignore
12
+ .svn/
13
+ # Common backup files
14
+ *.swp
15
+ *.bak
16
+ *.tmp
17
+ *.orig
18
+ *~
19
+ # Various IDEs
20
+ .project
21
+ .idea/
22
+ *.tmproj
23
+ .vscode/
Original file line number Diff line number Diff line change
1
+ dependencies:
2
+ - name: eoapi
3
+ repository: https://devseed.com/eoapi-k8s/
4
+ version: 0.5.0
5
+ - name: webapp-polder
6
+ repository: file://../webapp-polder
7
+ version: 0.1.0
8
+ digest: sha256:7d2fa7cbafd56b2614fd50464e710584eac65bf1b64a2b644e9457a3f162567d
9
+ generated: "2024-11-04T14:12:53.307694627+01:00"
Original file line number Diff line number Diff line change
1
+ apiVersion : v2
2
+ name : polder
3
+ description : Create a polder - Web AOI viewer - instance.
4
+
5
+ type : application
6
+
7
+ # This is the chart version. This version number should be incremented each time you make changes
8
+ # to the chart and its templates, including the app version.
9
+ # Versions are expected to follow Semantic Versioning (https://semver.org/)
10
+ version : 0.1.0
11
+
12
+ # This is the version number of the application being deployed. This version number should be
13
+ # incremented each time you make changes to the application. Versions are not expected to
14
+ # follow Semantic Versioning. They should reflect the version the application is using.
15
+ # It is recommended to use it with quotes.
16
+ appVersion : " 0.2.0"
17
+
18
+ dependencies :
19
+ - name : eoapi
20
+ version : 0.5.0
21
+ repository : " https://devseed.com/eoapi-k8s/"
22
+ - name : webapp-polder
23
+ version : 0.1.0
24
+ repository : file://../webapp-polder
Original file line number Diff line number Diff line change
1
+ # Default values for polder.
2
+ # This is a YAML-formatted file.
3
+ # Declare variables to be passed into your templates.
4
+
5
+ # This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
6
+ replicaCount : 1
7
+
8
+ # This is to override the chart name.
9
+ nameOverride : " polder"
10
+ fullnameOverride : " test-polder"
11
+
12
+ # polder custom configuration
13
+ mapboxToken : " "
14
+ stacApi : " https://rx2hna9pbg.execute-api.eu-central-1.amazonaws.com"
15
+ tilerApi : " https://zbrrek2x0i.execute-api.eu-central-1.amazonaws.com"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ classifiers = [
31
31
" Programming Language :: Python :: 3.12" ,
32
32
" Topic :: Scientific/Engineering :: GIS" ,
33
33
]
34
- version =" 0.0.1 "
34
+ version =" 0.2.0 "
35
35
dependencies = [
36
36
]
37
37
@@ -41,4 +41,3 @@ Documentation = "https://developmentseed.org/polder/"
41
41
Issues = " https://github.com/developmentseed/polder/issues"
42
42
Source = " https://github.com/developmentseed/polder"
43
43
Changelog = " https://developmentseed.org/polder/release-notes/"
44
-
You can’t perform that action at this time.
0 commit comments