Skip to content

Commit

Permalink
test empty image for AH
Browse files Browse the repository at this point in the history
  • Loading branch information
masterkain committed Feb 13, 2024
1 parent e92a782 commit c9c8f75
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions charts/nextjs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: nextjs
description: Generic Helm chart for Nextjs apps on Kubernetes
type: application
version: 1.0.0
appVersion: "1.0.0"
version: 1.0.1
appVersion: '1.0.0'
keywords:
- nextjs
maintainers:
Expand All @@ -14,4 +14,4 @@ home: https://github.com/icoretech/helm
sources:
- https://github.com/icoretech/helm
annotations:
artifacthub.io/license: "MIT"
artifacthub.io/license: 'MIT'
14 changes: 7 additions & 7 deletions charts/nextjs/values.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
nameOverride: ""
fullnameOverride: ""
nameOverride: ''
fullnameOverride: ''

web:
imagePullPolicy: IfNotPresent
imagePullSecrets: "" # must be present in namespace
image: ghcr.io/icoretech/nextjs:1.1.46
imagePullSecrets: '' # must be present in namespace
image: ''
terminationGracePeriodSeconds: 0
replicaCount: 1

Expand All @@ -18,13 +18,13 @@ web:
# so this should be considered experimental.
cachePersistentVolume:
enabled: false # If set to true, a PersistentVolumeClaim (PVC) will be created for caching
storageClass: "" # The storage class to use for the PVC. If not set, the default StorageClass will be used
existingClaim: "" # If set, this existing PVC will be used instead of creating a new one
storageClass: '' # The storage class to use for the PVC. If not set, the default StorageClass will be used
existingClaim: '' # If set, this existing PVC will be used instead of creating a new one
accessModes:
- ReadWriteOnce # The access modes for the PVC. Can be ReadWriteOnce, ReadOnlyMany, or ReadWriteMany. If cachePersistentVolume is enabled and replicaCount is more than 1, this should be set to ReadWriteMany
annotations: {} # Annotations to add to the PVC
size: 1Gi # The requested storage size for the PVC
volumeMode: "" # The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
volumeMode: '' # The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
mountPath: /app/.next/cache # The path to mount the volume in the container

hpa:
Expand Down

0 comments on commit c9c8f75

Please sign in to comment.