Skip to content

Commit 1706fe8

Browse files
feat(deps): update graph dependencies (#609)
| datasource | package | from | to | | ---------- | ----------------------------------- | ------- | ------- | | docker | ghcr.io/graphprotocol/indexer-agent | v0.25.3 | v0.25.5 | feat: add namespace to resources --------- Co-authored-by: graphops-renovate[bot] <135047802+graphops-renovate[bot]@users.noreply.github.com> Co-authored-by: Carlos Jorge <carlos@graphops.xyz>
1 parent 4a5a4bd commit 1706fe8

File tree

22 files changed

+32
-7
lines changed

22 files changed

+32
-7
lines changed

charts/graph-network-indexer/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.6.3
18+
version: 0.6.4
1919

2020
# The appVersion field is intentionally left empty. Component versions are managed separately
2121
# and can be found in the values.yaml file or individual component configurations.

charts/graph-network-indexer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Deploy and scale the [Graph Network Indexer](https://github.com/graphprotocol/indexer) components inside Kubernetes with ease
44

5-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.6.3](https://img.shields.io/badge/Version-0.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-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.6.4](https://img.shields.io/badge/Version-0.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
## Introduction
88

@@ -112,7 +112,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
112112
| indexerAgent.config.max-provision-initial-size | Setting for automated initial provision for Horizon migration | int | `100000` |
113113
| indexerAgent.env | | object | `{}` |
114114
| indexerAgent.extraArgs | | list | `[]` |
115-
| indexerAgent.image | Image for indexer-agent | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/graphprotocol/indexer-agent","tag":"v0.25.3"}` |
115+
| indexerAgent.image | Image for indexer-agent | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/graphprotocol/indexer-agent","tag":"v0.25.5"}` |
116116
| indexerAgent.nodeSelector | | object | `{}` |
117117
| indexerAgent.podAnnotations | Annotations for the `Pod` | object | `{}` |
118118
| indexerAgent.podSecurityContext | Pod-wide security context | object | `{"fsGroup":101337,"runAsGroup":101337,"runAsNonRoot":true,"runAsUser":101337}` |

charts/graph-network-indexer/templates/dashboards.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: v1
44
kind: ConfigMap
55
metadata:
66
name: {{ include "graph-network-indexer.fullname" . }}-dashboards
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "graph-network-indexer.labels" . | nindent 4 }}
910
{{ $values.dashboardsConfigMapLabel }}: {{ $values.dashboardsConfigMapLabelValue | quote }}

charts/graph-network-indexer/templates/indexer-agent/service.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ apiVersion: v1
55
kind: Service
66
metadata:
77
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}-headless
8+
namespace: {{ .Release.Namespace }}
89
labels:
910
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1011
{{- $componentLabel | nindent 4 }}
@@ -25,6 +26,7 @@ apiVersion: v1
2526
kind: Service
2627
metadata:
2728
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
29+
namespace: {{ .Release.Namespace }}
2830
{{- if $values.service.topologyAwareRouting.enabled }}
2931
annotations:
3032
service.kubernetes.io/topology-aware-hints: "auto"

charts/graph-network-indexer/templates/indexer-agent/servicemonitor.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ apiVersion: monitoring.coreos.com/v1
77
kind: ServiceMonitor
88
metadata:
99
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
10+
namespace: {{ .Release.Namespace }}
1011
labels:
1112
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1213
{{- $componentLabel | nindent 4 }}

charts/graph-network-indexer/templates/indexer-agent/statefulset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ apiVersion: apps/v1
4646
kind: StatefulSet # StatefulSet is better behaved when trying to maintain a single instance of the agent. We never want more than one agent active at a time.
4747
metadata:
4848
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
49+
namespace: {{ .Release.Namespace }}
4950
labels:
5051
{{- include "graph-network-indexer.labels" . | nindent 4 }}
5152
{{- $componentLabel | nindent 4 }}

charts/graph-network-indexer/templates/indexer-service/configmap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ apiVersion: v1
88
kind: ConfigMap
99
metadata:
1010
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}-config
11+
namespace: {{ .Release.Namespace }}
1112
labels:
1213
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1314
{{- $componentLabel | nindent 4 }}

charts/graph-network-indexer/templates/indexer-service/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ apiVersion: apps/v1
99
kind: Deployment
1010
metadata:
1111
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
12+
namespace: {{ .Release.Namespace }}
1213
labels:
1314
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1415
{{- $componentLabel | nindent 4 }}

charts/graph-network-indexer/templates/indexer-service/service.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ metadata:
99
service.kubernetes.io/topology-aware-hints: "auto"
1010
{{- end }}
1111
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
12+
namespace: {{ .Release.Namespace }}
1213
labels:
1314
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1415
{{- $componentLabel | nindent 4 }}

charts/graph-network-indexer/templates/indexer-service/servicemonitor.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ apiVersion: monitoring.coreos.com/v1
77
kind: ServiceMonitor
88
metadata:
99
name: {{ include "graph-network-indexer.fullname" . }}-{{ $componentName }}
10+
namespace: {{ .Release.Namespace }}
1011
labels:
1112
{{- include "graph-network-indexer.labels" . | nindent 4 }}
1213
{{- $componentLabel | nindent 4 }}

0 commit comments

Comments
 (0)