Skip to content

Commit

Permalink
feat(release): Release of v1.0.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Dec 3, 2023
1 parent 2859bea commit 2bf8171
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0.0-beta2
## 1.0.0-beta3

- Breaking Changes
- Drupal 7 Chart has been removed
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: drupal
apiVersion: v2
type: application
version: 1.0.0-beta2
version: 1.0.0-beta3
appVersion: 5.0.1
description: Drupal 9/10 variant of the Web Experience Toolkit (WxT).
keywords:
Expand Down
59 changes: 48 additions & 11 deletions charts/drupal/values-example-csi-azure.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Default values for Site Example CSI Azure.
# Default values for Example CSI Azure.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

Expand All @@ -18,7 +18,6 @@ drupal:
##
image: example.azurecr.io/site-example
tag: 1.0.0
version: d9

imagePullSecrets:
- name: acr-registry
Expand Down Expand Up @@ -58,6 +57,11 @@ drupal:
reconfigure: true
cacheRebuildBeforeDatabaseMigration: true

securityContext: {}
# fsGroup: 82
# runAsGroup: 82
# runAsUser: 82

# Run extra install scripts
# postInstallScripts: |-
#
Expand Down Expand Up @@ -134,6 +138,11 @@ drupal:
- name: files-tmp
mountPath: /drupal-tmp

smtp: {}
# host: mail.example.ca:25
# tls: true
# starttls: true

configSync:
directory: "/var/www/config/sync"

Expand All @@ -153,12 +162,15 @@ nginx:
- name: files-public
mountPath: /var/www/html/sites/default/files

securityContext: {}
# fsGroup: 33

azure:
storageClass:
create: true

## Azure Files
# kubectl create secret generic example-storage --from-literal=azurestorageaccountname=$STORAGE_ACCOUNT_NAME --from-literal=azurestorageaccountkey=$STORAGE_KEY -n catsa
# kubectl create secret generic example-storage --from-literal=azurestorageaccountname=$STORAGE_ACCOUNT_NAME --from-literal=azurestorageaccountkey=$STORAGE_KEY -n example
azureFile:
enabled: true
# storageClass: "-"
Expand All @@ -169,44 +181,68 @@ azure:

public:
spec:
# azureFile:
# secretName: example-storage
# shareName: public
# # secretNamespace: ""
# readOnly: false

csi:
driver: file.csi.azure.com
volumeHandle: "example-drupal-public-nfs"
volumeAttributes:
resourceGroup: "dev-cc-drupal"
storageAccount: "devccdrupal"
resourceGroup: "managed-dev-cc-drupal"
storageAccount: "manageddevccdrupal"
shareName: public
protocol: nfs

private:
spec:
# azureFile:
# secretName: example-storage
# shareName: private
# # secretNamespace: ""
# readOnly: false

csi:
driver: file.csi.azure.com
volumeHandle: "example-drupal-private-nfs"
volumeAttributes:
resourceGroup: "dev-cc-drupal"
storageAccount: "devccdrupal"
resourceGroup: "managed-dev-cc-drupal"
storageAccount: "manageddevccdrupal"
shareName: public
protocol: nfs

backup:
spec:
# azureFile:
# secretName: example-storage
# shareName: private
# # secretNamespace: ""
# readOnly: false

csi:
driver: file.csi.azure.com
volumeHandle: "example-drupal-backup-nfs"
volumeAttributes:
resourceGroup: "dev-cc-drupal"
storageAccount: "devccdrupal"
resourceGroup: "managed-dev-cc-drupal"
storageAccount: "manageddevccdrupal"
shareName: backup
protocol: nfs
tmp:
spec:
# azureFile:
# secretName: example-storage
# shareName: private
# # secretNamespace: ""
# readOnly: false

csi:
driver: file.csi.azure.com
volumeHandle: "example-drupal-tmp-nfs"
volumeAttributes:
resourceGroup: "dev-cc-drupal"
storageAccount: "devccdrupal"
resourceGroup: "managed-dev-cc-drupal"
storageAccount: "manageddevccdrupal"
shareName: tmp
protocol: nfs

Expand Down Expand Up @@ -267,6 +303,7 @@ varnish:
image: docker.io/varnish
imagePullSecrets:
- name: acr-registry

memorySize: 1G

## External DB
Expand Down
2 changes: 1 addition & 1 deletion charts/drupal/values-example-single-node.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Default values for Site Example Single Node.
# Default values for Example Single Node.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

Expand Down
4 changes: 2 additions & 2 deletions charts/drupal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ drupal:

## Version of the application
##
## Supported versions: d8
## Supported versions: d9, d10
##
version: d9
version: d10

services: ''
# |-
Expand Down

0 comments on commit 2bf8171

Please sign in to comment.