Skip to content

Commit

Permalink
feat: add library chip
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens committed Nov 23, 2023
1 parent dd35c41 commit 966bb57
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 31 deletions.
8 changes: 3 additions & 5 deletions charts/ff-common/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
apiVersion: v2
description: ff-common chart building components and helpers for the Frank!Framework
name: ff-common
description: ff-common chart building components and helpers for the Frank!Framework
version: 0.1.17
appVersion: "7.8"
home: https://frankframework.org
type: library
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/ff-common/icon.svg

keywords:
- library
home: https://frankframework.org
7 changes: 4 additions & 3 deletions charts/ff-test/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
apiVersion: v2
appVersion: "latest-tomcat"
description: A Helm chart for testing the Frank!Framework on Kubernetes
name: ff-test
description: A Helm chart for testing the Frank!Framework on Kubernetes
version: 0.2.28
appVersion: "latest-tomcat"
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/ff-test/icon.svg
home: https://frankframework.org
type: application
version: 0.2.28

keywords:
- e2e
Expand Down
11 changes: 6 additions & 5 deletions charts/frank-framework/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
apiVersion: v2
appVersion: "7.8"
description: A Helm chart for running the Frank!Framework on Kubernetes
deprecated: true
name: frank-framework
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frank-framework/icon.svg
type: application
description: A Helm chart for running the Frank!Framework on Kubernetes
version: 0.2.9
deprecated: true
appVersion: "7.8"
type: application
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frank-framework/icon.svg
home: https://frankframework.org

dependencies:
- name: ff-common
Expand Down
9 changes: 5 additions & 4 deletions charts/frank2example/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
apiVersion: v2
appVersion: "latest"
description: A Helm chart for running Frank2Example on Kubernetes
name: frank2example
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frank2example/icon.svg
type: application
description: A Helm chart for running Frank2Example on Kubernetes
version: 0.2.11
appVersion: "latest"
type: application
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frank2example/icon.svg
home: https://frankframework.org

keywords:
- demo
Expand Down
9 changes: 5 additions & 4 deletions charts/frankframework/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
apiVersion: v2
appVersion: "7.8"
description: A Helm chart for running the Frank!Framework on Kubernetes
name: frankframework
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frankframework/icon.svg
type: application
description: A Helm chart for running the Frank!Framework on Kubernetes
version: 0.2.11
appVersion: "7.8"
type: application
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frankframework/icon.svg
home: https://frankframework.org

dependencies:
- name: ff-common
Expand Down
9 changes: 5 additions & 4 deletions ff-template/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
apiVersion: v2
appVersion: "7.8"
description: A Helm chart for running a Frank! on Kubernetes
name: ff-template
icon: https://raw.githubusercontent.com/frankframework/charts/master/ff-template/icon.svg
type: application
description: A Helm chart for running a Frank! on Kubernetes
version: 0.1.7
appVersion: "7.8"
type: application
icon: https://raw.githubusercontent.com/frankframework/charts/master/ff-template/icon.svg
home: https://frankframework.org

dependencies:
- name: ff-common
Expand Down
12 changes: 6 additions & 6 deletions frontend/pages/[name].vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@
<div class="mb-0.5">
<span
class="bg-[#fdc300] font-bold text-black text-xs mr-0.5 px-2.5 py-0.5 rounded-full">{{
currentChart[0].version
chart[0].version
}}</span>
<span v-if="currentChart[0].deprecated"
<span v-if="chart[0].deprecated"
class="bg-red-100 text-red-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-red-900 dark:text-red-300">deprecated</span>
<span v-if="chart[0].type === 'library'"
class="bg-blue-100 text-blue-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-blue-900 dark:text-blue-300">library</span>
</div>
<div>
<span v-for="keyword in currentChart[0].keywords"
class="bg-yellow-100 text-yellow-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-yellow-900 dark:text-yellow-300">{{
keyword
}}</span>
<span v-for="keyword in chart[0].keywords"
class="bg-yellow-100 text-yellow-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-yellow-900 dark:text-yellow-300">{{ keyword }}</span>
</div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions frontend/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
}}</span>
<span v-if="chart[0].deprecated"
class="bg-red-100 text-red-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-red-900 dark:text-red-300">deprecated</span>
<span v-if="chart[0].type === 'library'"
class="bg-blue-100 text-blue-800 text-xs mr-0.5 font-medium px-2.5 py-0.5 rounded-full dark:bg-blue-900 dark:text-blue-300">library</span>
</div>
<div>
<span v-for="keyword in chart[0].keywords"
Expand Down

0 comments on commit 966bb57

Please sign in to comment.