Skip to content

Commit 25b9933

Browse files
authored
Merge pull request #41 from icoretech/feat/nextjs-default-image
chore(nextjs): default web.image to nginx
2 parents fd7367e + 229f6b9 commit 25b9933

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

charts/nextjs/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: nextjs
33
description: Generic Helm chart for Nextjs apps on Kubernetes
44
type: application
5-
version: 1.1.15
5+
version: 1.1.16
66
appVersion: '1.0.0'
77
icon: https://icoretech.github.io/helm/charts/nextjs/logo.png
88
keywords:

charts/nextjs/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nextjs
22

3-
![Version: 1.1.15](https://img.shields.io/badge/Version-1.1.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
3+
![Version: 1.1.16](https://img.shields.io/badge/Version-1.1.16-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
44

55
Generic Helm chart for Nextjs apps on Kubernetes
66

@@ -48,7 +48,7 @@ Generic Helm chart for Nextjs apps on Kubernetes
4848
| web.hpa.maxReplicas | int | `10` | |
4949
| web.hpa.memory | string | `nil` | |
5050
| web.hpa.requests | string | `nil` | |
51-
| web.image | string | `""` | |
51+
| web.image | string | `"nginx:latest"` | |
5252
| web.imagePullPolicy | string | `"IfNotPresent"` | |
5353
| web.imagePullSecrets | string | `""` | |
5454
| web.ingress.annotations | object | `{}` | |

charts/nextjs/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ fullnameOverride: ''
44
web:
55
imagePullPolicy: IfNotPresent
66
imagePullSecrets: '' # must be present in namespace
7-
image: ''
7+
# image -- Container image for the app. Override this for your Next.js image.
8+
image: nginx:latest
89
terminationGracePeriodSeconds: 0
910
replicaCount: 1
1011
runtimeClassName:

0 commit comments

Comments
 (0)