Skip to content

Commit a43650c

Browse files
authored
Merge pull request #117 from marklogic/master
Merge Master into Develop
2 parents c5145e4 + 7754377 commit a43650c

File tree

7 files changed

+38
-48
lines changed

7 files changed

+38
-48
lines changed

.github/workflows/release.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "[email protected]"
23+
- name: Install Helm
24+
uses: azure/setup-helm@v3
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
28+
- name: Run chart-releaser
29+
uses: helm/[email protected]
30+
with:
31+
charts_dir: '.'
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}

charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
version: "1.18.0"
99
name: marklogic
1010
description: MarkLogic Server is a multi-model database that has both NoSQL and trusted enterprise data management capabilities.
11-
appVersion: "11.0.0"
11+
appVersion: "11.0.2"
1212
type: application
1313
keywords:
1414
- marklogic
@@ -17,4 +17,4 @@ keywords:
1717
sources:
1818
- https://github.com/marklogic/marklogic-kubernetes
1919
- https://www.marklogic.com/
20-
version: 1.0.0
20+
version: 1.0.0-rc2

charts/templates/configmap-haproxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.haproxy.enabled }}
22
{{- $replicas := int .Values.replicaCount }}
3-
{{- $releaseName := .Release.Name }}
3+
{{- $releaseName := include "marklogic.fullname" . }}
44
{{- $namespace := .Release.Namespace }}
55
{{- $clusterDomain := .Values.clusterDomain }}
66
{{- $tlsEnabled := .Values.haproxy.tls.enabled }}

charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bootstrapHostName: ""
2828
# Marklogic image parameters
2929
image:
3030
repository: marklogicdb/marklogic-db
31-
tag: 10.0-9.5-centos-1.0.0
31+
tag: 11.0.2-centos-1.0.2
3232
pullPolicy: IfNotPresent
3333

3434
# Init container image parameters

index.yaml

Lines changed: 0 additions & 44 deletions
This file was deleted.

marklogic-1.0.0-ea1.tgz

-4.83 KB
Binary file not shown.

marklogic-1.0.0-ea2.tgz

-7.07 KB
Binary file not shown.

0 commit comments

Comments
 (0)