This repository can be added to the OpenShift Web Console as a ProjectHelmChartRepository
resource to install its charts
from the OpenShift Web Console.
You can add it to OpenShift Web Console by pasting it as a new YAML resource:
apiVersion: helm.openshift.io/v1beta1
kind: ProjectHelmChartRepository
metadata:
name: jboss-eap-up-and-running
spec:
connectionConfig:
url: https://jboss-eap-up-and-running.github.io/helm-charts/
name: Helm Examples for JBoss EAP
description: >-
This Helm Chart Repository contains examples for JBoss EAP
applications on OpenShift
Alternatively, you cann add it to the OpenShift Web Console with the oc
tool by running the command:
oc apply -f https://jboss-eap-up-and-running.github.io/helm-charts/phcr.yaml
ProjectHelmChartRepository
resource is added to the OpenShift Web Console, you can install the examples:
Developer
.+Add
. Add
page, click Helm Chart
.Helm Charts
catalog, select Examples for JBoss EAP
in the Chart Repositories
section to list all EAP examples.Create
to install the example.helm
toolThe helm
command-line tool must be installed to use the charts. Please refer to
Helm's documentation to get started.
Once helm
has been set up correctly, add this repository as follows:
helm repo add jboss-eap-examples https://jboss-eap-up-and-running.github.io/helm-charts
If you had already added this repo earlier, run helm repo update
to retrieve
the latest versions of the charts. You can then run helm search repo jboss-eap-examples
to list the charts.
To install the <chart-name>
chart, run the command:
helm install <chart-name> jboss-eap-examples/<chart-name>
To uninstall the chart, run the command:
helm delete <chart-name>