Skip to content

Commit

Permalink
Merge branch 'dev' into dependabot/gradle/software/oqm-core-api/dev/o…
Browse files Browse the repository at this point in the history
…rg.apache.commons-commons-lang3-3.15.0
  • Loading branch information
GregJohnStewart authored Jul 30, 2024
2 parents 166ac15 + 89775a5 commit d245e92
Show file tree
Hide file tree
Showing 2,402 changed files with 3,091 additions and 928 deletions.
23 changes: 23 additions & 0 deletions deployment/Kubernetes/helm/oqm-core/.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/
24 changes: 24 additions & 0 deletions deployment/Kubernetes/helm/oqm-core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: v2
name: oqm-core
description: A Helm chart for Kubernetes

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: oqm-core-depot
name: oqm-core-depot
spec:
replicas: 1
selector:
matchLabels:
app: oqm-core-depot
strategy: {}
template:
metadata:
labels:
app: oqm-core-depot
spec:
containers:
- image: docker.io/ebprod/oqm-core-depot:1.1.4-dev
name: oqm-core-depot
resources: {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: oqm-core-depot
name: oqm-core-depot
spec:
ports:
- port: 8080
protocol: TCP
targetPort: 8080
name: depot
selector:
app: oqm-core-depot
type: NodePort
107 changes: 107 additions & 0 deletions deployment/Kubernetes/helm/oqm-core/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Default values for oqm-core.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: nginx
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: true
# Automatically mount a ServiceAccount's API credentials?
automount: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}
podLabels: {}

podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

service:
type: ClusterIP
port: 80

ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false

# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true

nodeSelector: {}

tolerations: []

affinity: {}
3 changes: 0 additions & 3 deletions software/libs/open-qm-moduleDriver/.idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion software/libs/open-qm-moduleDriver/.idea/.name

This file was deleted.

17 changes: 0 additions & 17 deletions software/libs/open-qm-moduleDriver/.idea/compiler.xml

This file was deleted.

17 changes: 0 additions & 17 deletions software/libs/open-qm-moduleDriver/.idea/gradle.xml

This file was deleted.

25 changes: 0 additions & 25 deletions software/libs/open-qm-moduleDriver/.idea/jarRepositories.xml

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions software/libs/open-qm-moduleDriver/.idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions software/libs/open-qm-moduleDriver/.idea/modules.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit d245e92

Please sign in to comment.