Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
permissions:
contents: write
pull-requests: write
issues: write

defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ tmp/
.tmp/
.go-cache/
.bin/
package-lock.json
13 changes: 9 additions & 4 deletions helm/okdp-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ apiVersion: v2
name: okdp-server
description: A Helm chart for okdp-server
type: application
version: 0.1.0-snapshot
appVersion: "0.1.0-snapshot"

version: 0.1.0
appVersion: "0.1.0"
home: https://okdp.io
maintainers:
- email: idir.izitounene@kubotal.io
name: idirze
url: https://github.com/idirze
sources:
- https://github.com/OKDP/okdp-ui
dependencies:
- name: swagger-ui
version: "0.1.0"
repository: "oci://quay.io/okdp/charts"
condition: swagger-ui.enabled

16 changes: 14 additions & 2 deletions helm/okdp-server/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# okdp-server

![Version: 0.1.0-snapshot](https://img.shields.io/badge/Version-0.1.0--snapshot-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0-snapshot](https://img.shields.io/badge/AppVersion-0.1.0--snapshot-informational?style=flat-square)
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)

A Helm chart for okdp-server

**Homepage:** <https://okdp.io>

## Maintainers

| Name | Email | Url |
| ---- | ------ | --- |
| idirze | <idir.izitounene@kubotal.io> | <https://github.com/idirze> |

## Source Code

* <https://github.com/OKDP/okdp-ui>

## Requirements

| Repository | Name | Version |
Expand Down Expand Up @@ -61,7 +73,7 @@ A Helm chart for okdp-server
| fullnameOverride | string | `""` | Overrides the release name. |
| image.pullPolicy | string | `"Always"` | Image pull policy. |
| image.repository | string | `"quay.io/okdp/okdp-server"` | Docker image registry. |
| image.tag | string | `"0.1.0-snapshot"` | Image tag. |
| image.tag | string | `"0.1.0"` | Image tag. |
| imagePullSecrets | list | `[]` | Secrets to be used for pulling images from private Docker registries. |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | Specify the ingress class (Kubernetes >= 1.18). |
Expand Down
2 changes: 1 addition & 1 deletion helm/okdp-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ image:
# -- Image pull policy.
pullPolicy: Always
# -- Image tag.
tag: "0.1.0-snapshot"
tag: "0.1.0"

# -- Secrets to be used for pulling images from private Docker registries.
imagePullSecrets: []
Expand Down
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "okdp-server",
"version": "0.1.0",
"description": "okdp-server docker image",
"repository": {
"type": "git",
"url": "https://github.com/OKDP/okdp-server"
},
"homepage": "https://okdp.io/",
"license": "Apache-2.0"
}
4 changes: 2 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"packages": {
"helm/okdp-server": {
"component": "helm-okdp-server",
"initial-version": "0.1.0-snapshot",
"initial-version": "0.1.0",
"extra-label": "helm",
"tag-separator": "/",
"changelog-path": "CHANGELOG.md",
Expand All @@ -18,7 +18,7 @@
},
".": {
"component": "okdp-server",
"initial-version": "0.1.0-snapshot",
"initial-version": "0.1.0",
"extra-label": "docker",
"changelog-path": "CHANGELOG.md",
"release-type": "node",
Expand Down