Skip to content

Commit

Permalink
feat: add keywords and show them in frontend
Browse files Browse the repository at this point in the history
also add github button
  • Loading branch information
philipsens committed Nov 23, 2023
1 parent 4b46589 commit 10ee1b5
Show file tree
Hide file tree
Showing 22 changed files with 1,130 additions and 87 deletions.
3 changes: 3 additions & 0 deletions charts/ff-common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ version: 0.1.17
appVersion: "7.8"
home: https://frankframework.org
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/ff-common/icon.svg

keywords:
- library
2 changes: 1 addition & 1 deletion charts/ff-common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fullnameOverride: ""
##

## Frank!Framework image
## ref: https://https://nexus.frankframework.org/#browse/browse:frankframework-docker:v2%2Ffrankframework%2Ftags/
## ref: https://nexus.frankframework.org/#browse/browse:frankframework-docker:v2%2Ffrankframework%2Ftags/
## @param image.registry Frank!Framework image registry
## @param image.repository Frank!Framework image repository
## @param image.tag Frank!Framework image tag (immutable tags are recommended)
Expand Down
3 changes: 3 additions & 0 deletions charts/ff-test/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/ff-t
type: application
version: 0.2.28

keywords:
- e2e

dependencies:
- name: ff-common
version: ~0.1.17
Expand Down
2 changes: 1 addition & 1 deletion charts/ff-test/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fullnameOverride: ""
##

## Frank!Framework image
## ref: https://https://nexus.frankframework.org/#browse/browse:frankframework-docker:v2%2Ffrankframework%2Ftags/
## ref: https://nexus.frankframework.org/#browse/browse:frankframework-docker:v2%2Ffrankframework%2Ftags/
## @param image.registry Frank!Framework image registry
## @param image.repository Frank!Framework image repository
## @param image.tag Frank!Framework image tag (immutable tags are recommended)
Expand Down
23 changes: 23 additions & 0 deletions charts/frank-framework/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
6 changes: 6 additions & 0 deletions charts/frank-framework/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: ff-common
repository: file://../ff-common
version: 0.1.17
digest: sha256:353f8759953bd5fd67bd59a10d53622a7837c9cf1ac369c4d06bc221e41aadcb
generated: "2023-11-21T10:37:52.443945524+01:00"
13 changes: 13 additions & 0 deletions charts/frank-framework/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v2
appVersion: "7.8"
description: A Helm chart for running the Frank!Framework on Kubernetes
name: frank-framework
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frank-framework/icon.svg
type: application
version: 0.2.9
deprecated: true

dependencies:
- name: ff-common
version: ~0.1.17
repository: file://../ff-common
172 changes: 172 additions & 0 deletions charts/frank-framework/README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions charts/frank-framework/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions charts/frank-framework/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
1. Get the application URL by running these commands:
{{- if .Values.ingress.enabled }}
{{- range $host := .Values.ingress.hosts }}
{{- range .paths }}
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
{{- end }}
{{- end }}
{{- else if contains "NodePort" .Values.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "ff-common.fullname" . }})
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT
{{- else if contains "LoadBalancer" .Values.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "ff-common.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "ff-common.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
echo http://$SERVICE_IP:{{ .Values.service.port }}
{{- else if contains "ClusterIP" .Values.service.type }}
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "ff-common.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
echo "Visit http://127.0.0.1:8080 to use your application"
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT
{{- end }}
17 changes: 17 additions & 0 deletions charts/frank-framework/templates/manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{{ template "ff-common.configmap.context.tpl" . }}
---
{{ template "ff-common.configmap.env.tpl" . }}
---
{{ template "ff-common.configmap.tomcat-users.tpl" . }}
---
{{ template "ff-common.configmap.ldap-role-mapping.tpl" . }}
---
{{ template "ff-common.deployment.tpl" . }}
---
{{ template "ff-common.hpa.tpl" . }}
---
{{ template "ff-common.serviceAccount.tpl" . }}
---
{{ template "ff-common.service.tpl" . }}
---
{{ template "ff-common.ingress.tpl" . }}
Loading

0 comments on commit 10ee1b5

Please sign in to comment.