Skip to content

Commit d0e3766

Browse files
authored
feat: adding example-content to openmfp (#30)
* feat: adding example-content to openmfp * chore: updating dependencies * chore: bump version
1 parent 3fec0d4 commit d0e3766

File tree

4 files changed

+15
-101
lines changed

4 files changed

+15
-101
lines changed

charts/openmfp/Chart.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
dependencies:
2+
- name: example-content
3+
repository: oci://ghcr.io/openmfp/helm-charts
4+
version: 0.110.4
25
- name: portal
36
repository: oci://ghcr.io/openmfp/helm-charts
47
version: 0.69.111
5-
digest: sha256:3a08e11fdf2203ef410935c28b9caa8d606bc98f93193cec24f33f8a20dfeaf1
6-
generated: "2024-11-26T17:38:38.986565828Z"
8+
digest: sha256:337f2fed3bb0bebf0a302cbf82aafcfe88a1e7896dbf5151ed11824fc05c101e
9+
generated: "2024-11-26T18:43:51.483513+01:00"

charts/openmfp/Chart.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ apiVersion: v2
22
name: openmfp
33
description: The OpenMFP chart for Kubernetes
44
type: application
5-
version: 0.0.2
5+
version: 0.0.3
66
appVersion: "0.0.0"
77

88
dependencies:
9+
- name: example-content
10+
version: 0.110.4
11+
repository: oci://ghcr.io/openmfp/helm-charts
12+
condition: components.example-content.enabled
913
- name: portal
1014
version: 0.69.111
1115
repository: oci://ghcr.io/openmfp/helm-charts
Binary file not shown.

charts/openmfp/values.yaml

+5-98
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,5 @@
1-
# Default values for openmfp.
2-
# This is a YAML-formatted file.
3-
# Declare variables to be passed into your templates.
4-
5-
replicaCount: 1
6-
7-
image:
8-
repository: nginx
9-
pullPolicy: IfNotPresent
10-
# Overrides the image tag whose default is the chart appVersion.
11-
tag: ""
12-
13-
imagePullSecrets: []
14-
nameOverride: ""
15-
fullnameOverride: ""
16-
17-
serviceAccount:
18-
# Specifies whether a service account should be created
19-
create: true
20-
# Automatically mount a ServiceAccount's API credentials?
21-
automount: true
22-
# Annotations to add to the service account
23-
annotations: {}
24-
# The name of the service account to use.
25-
# If not set and create is true, a name is generated using the fullname template
26-
name: ""
27-
28-
podAnnotations: {}
29-
podLabels: {}
30-
31-
podSecurityContext: {}
32-
# fsGroup: 2000
33-
34-
securityContext: {}
35-
# capabilities:
36-
# drop:
37-
# - ALL
38-
# readOnlyRootFilesystem: true
39-
# runAsNonRoot: true
40-
# runAsUser: 1000
41-
42-
service:
43-
type: ClusterIP
44-
port: 80
45-
46-
ingress:
47-
enabled: false
48-
className: ""
49-
annotations: {}
50-
# kubernetes.io/ingress.class: nginx
51-
# kubernetes.io/tls-acme: "true"
52-
hosts:
53-
- host: chart-example.local
54-
paths:
55-
- path: /
56-
pathType: ImplementationSpecific
57-
tls: []
58-
# - secretName: chart-example-tls
59-
# hosts:
60-
# - chart-example.local
61-
62-
resources: {}
63-
# We usually recommend not to specify default resources and to leave this as a conscious
64-
# choice for the user. This also increases chances charts run on environments with little
65-
# resources, such as Minikube. If you do want to specify resources, uncomment the following
66-
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
67-
# limits:
68-
# cpu: 100m
69-
# memory: 128Mi
70-
# requests:
71-
# cpu: 100m
72-
# memory: 128Mi
73-
74-
autoscaling:
75-
enabled: false
76-
minReplicas: 1
77-
maxReplicas: 100
78-
targetCPUUtilizationPercentage: 80
79-
# targetMemoryUtilizationPercentage: 80
80-
81-
# Additional volumes on the output Deployment definition.
82-
volumes: []
83-
# - name: foo
84-
# secret:
85-
# secretName: mysecret
86-
# optional: false
87-
88-
# Additional volumeMounts on the output Deployment definition.
89-
volumeMounts: []
90-
# - name: foo
91-
# mountPath: "/etc/foo"
92-
# readOnly: true
93-
94-
nodeSelector: {}
95-
96-
tolerations: []
97-
98-
affinity: {}
1+
components:
2+
example-content:
3+
enabled: false
4+
portal:
5+
enabled: true

0 commit comments

Comments
 (0)