Skip to content

Commit 4086549

Browse files
feat: add namespace to resources (#613)
1 parent 1706fe8 commit 4086549

5 files changed

Lines changed: 5 additions & 2 deletions

File tree

charts/graph-toolbox/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.3
18+
version: 0.1.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/graph-toolbox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Deploy a preconfigured toolbox container for to be used alongside the Graph Network Indexer stack
44

5-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: main](https://img.shields.io/badge/AppVersion-main-informational?style=flat-square)
5+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: main](https://img.shields.io/badge/AppVersion-main-informational?style=flat-square)
66

77
## Introduction
88

charts/graph-toolbox/templates/serviceaccount.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: v1
33
kind: ServiceAccount
44
metadata:
55
name: {{ include "graph-toolbox.serviceAccountName" . }}
6+
namespace: {{ .Release.Namespace }}
67
labels:
78
{{- include "graph-toolbox.labels" . | nindent 4 }}
89
{{- with .Values.serviceAccount.annotations }}

charts/graph-toolbox/templates/toolbox/service.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: v1
33
kind: Service
44
metadata:
55
name: {{ include "graph-toolbox.fullname" . }}-headless
6+
namespace: {{ .Release.Namespace }}
67
labels:
78
{{- include "graph-toolbox.labels" . | nindent 4 }}
89
spec:

charts/graph-toolbox/templates/toolbox/statefulset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ apiVersion: apps/v1
55
kind: StatefulSet # StatefulSet is better behaved when trying to maintain a single instance
66
metadata:
77
name: {{ include "graph-toolbox.fullname" . }}
8+
namespace: {{ .Release.Namespace }}
89
labels:
910
{{- include "graph-toolbox.labels" . | nindent 4 }}
1011
spec:

0 commit comments

Comments
 (0)