Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion php/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.
version: 1.4.2
version: 1.4.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
4 changes: 3 additions & 1 deletion php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ The following table lists the configurable parameters of the PHP chart and their
| `serviceAccount.labels` | Labels for the created service account | `{}` |
| `serviceAccount.name` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template | `` |
| `test.enabled` | Enables helm test | `true` |
| `test.image` | Image used for helm test pod | `curlimages/curl` |
| `test.tag` | Tag for helm test image | `latest` |

### Init containers

Expand Down Expand Up @@ -276,4 +278,4 @@ $ kc logs -c php-fpm php-669bc99b68-t958q --timestamps -f
2020-02-12T06:29:41.990008076Z thrown in /var/www/html/index.php on line 1
```

Since the log cannot be combined into one line in the PHP setting, use [set_error_handler](https://www.php.net/manual/ja/function.set-error-handler.php) or [set_execption_handler](https://www.php.net/manual/ja/function.set-exception-handler.php) to solve the problem with the application.
Since the log cannot be combined into one line in the PHP setting, use [set_error_handler](https://www.php.net/manual/ja/function.set-error-handler.php) or [set_execption_handler](https://www.php.net/manual/ja/function.set-exception-handler.php) to solve the problem with the application.
4 changes: 2 additions & 2 deletions php/templates/test/test-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
spec:
containers:
- name: {{ template "php.fullname" . }}-test
image: appropriate/curl
image: "{{ default "curlimages/curl" .Values.test.image }}:{{ default "latest" .Values.test.tag }}"
command:
- /bin/sh
- -c
Expand All @@ -24,4 +24,4 @@ spec:
{{- toYaml . | nindent 4}}
{{- end }}
restartPolicy: Never
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions php/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ fpm:
# TEST
test:
enabled: true
image: curlimages/curl
tag: latest

# Rollout configurations
rollout:
Expand Down