Skip to content

Commit ba31a47

Browse files
authored
Merge pull request #360 from CARV-ICS-FORTH/pdf-export
improve the pdf-export
2 parents 26db6eb + 7d49833 commit ba31a47

39 files changed

+329
-104
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@ docker-run: docker-build ## Build and Run docker image for the Frisbee controlle
154154
##@ Deployment
155155
docker-push: docker-build ## Push the latest docker image for Frisbee controller.
156156
@echo "===> Tag ${IMG} as frisbee-operator:latest <==="
157-
docker tag ${IMG} $(IMAGE_TAG_BASE)/frisbee-operator:${FrisbeeVersion}
158-
docker tag ${IMG} $(IMAGE_TAG_BASE)/frisbee-operator:latest
157+
docker tag ${IMG} ${IMAGE_TAG_BASE}/frisbee-operator:${FrisbeeVersion}
158+
docker tag ${IMG} ${IMAGE_TAG_BASE}/frisbee-operator:latest
159159

160160
@echo "===> Push frisbee operator ${FrisbeeVersion} as latest <==="
161-
docker push $(IMAGE_TAG_BASE)/frisbee-operator:${FrisbeeVersion}
162-
docker push $(IMAGE_TAG_BASE)/frisbee-operator:latest
161+
docker push ${IMAGE_TAG_BASE}/frisbee-operator:${FrisbeeVersion}
162+
docker push ${IMAGE_TAG_BASE}/frisbee-operator:latest
163163

164164

165165
install: generate ## Deploy platform to the K8s cluster specified in ~/.kube/config.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ignore local charts (used for testing)
2+
charts
3+
Chart.lock
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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/
24+
25+
# Docs
26+
*.md
27+
28+
# Ignore any figures used in the README.md
29+
examples/README.assets
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
apiVersion: v2
3+
name: flower
4+
description: Flower - A Friendly Federated Learning Framework
5+
6+
# A chart can be either an 'application' or a 'library' chart.
7+
#
8+
# Application charts are a collection of templates that can be packaged into versioned archives
9+
# to be deployed.
10+
#
11+
# Library charts provide useful utilities or functions for the chart developer. They're included as
12+
# a dependency of application charts to inject those utilities and functions into the rendering
13+
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
14+
type: application
15+
16+
# This is the version number of the application being deployed. This version number should be
17+
# incremented each time you make changes to the application. Versions are not expected to
18+
# follow Semantic Versioning. They should reflect the version the application is using.
19+
# It is recommended to use it with quotes.
20+
appVersion: "1.16.0"
21+
22+
maintainers:
23+
- name: Fotis Nikolaidis
24+
email: nikolaidis.fotis@gmail.com
25+
url: https://www.linkedin.com/in/fotis-nikolaidis-444a6634/
26+
27+
28+
# This is the chart version. This version number should be incremented each time you make changes
29+
# to the chart and its templates, including the app version.
30+
# Versions are expected to follow Semantic Versioning (https://semver.org/)
31+
version: 0.0.0
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Flower
2+
3+
4+
5+
## Parameters

charts/federated-learning/flower/examples/1.baseline.yml renamed to charts/federated-learning/flower-custom/examples/1.baseline.yml

File renamed without changes.

charts/federated-learning/flower/examples/10.scheduled-join.yml renamed to charts/federated-learning/flower-custom/examples/10.scheduled-join.yml

File renamed without changes.

charts/federated-learning/flower/examples/11.scaled-baseline.yml renamed to charts/federated-learning/flower-custom/examples/11.scaled-baseline.yml

File renamed without changes.

charts/federated-learning/flower/examples/12.coverage.yml renamed to charts/federated-learning/flower-custom/examples/12.coverage.yml

File renamed without changes.

charts/federated-learning/flower/examples/13.scaled-with-logs.yml renamed to charts/federated-learning/flower-custom/examples/13.scaled-with-logs.yml

File renamed without changes.

0 commit comments

Comments
 (0)