Skip to content

Commit

Permalink
build: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tyknkd committed May 15, 2024
1 parent 3e3409a commit 87d9bb6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion deployment/templates/data-analyzer-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: data-analyzer
image: tyknkd/newsanalyzer-dataanalyzer
image: tyknkd/newsanalyzer-dataanalyzer:0.1.0
env:
- name: ANALYZER_DB
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion deployment/templates/data-collector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: data-collector
image: tyknkd/newsanalyzer-datacollector
image: tyknkd/newsanalyzer-datacollector:0.1.0
env:
- name: ANALYZER_HOST
valueFrom:
Expand Down
4 changes: 2 additions & 2 deletions deployment/templates/db-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
- mountPath: /docker-entrypoint-initdb.d
name: db-init-script
- mountPath: /var/lib/postgresql/data
name: db-data-claim
name: db-claim
restartPolicy: Always
volumes:
- name: postgres-password
Expand All @@ -76,7 +76,7 @@ spec:
name: db-init-configmap
volumeClaimTemplates:
- metadata:
name: db-data-claim
name: db-claim
spec:
accessModes:
- ReadWriteOnce
Expand Down
10 changes: 5 additions & 5 deletions deployment/templates/grafana-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: grafana
name: grafana-sts
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
Expand Down Expand Up @@ -58,12 +58,12 @@ spec:
name: grafana-claim
restartPolicy: Always
volumes:
- name: postgres-password
- name: grafana-password
secret:
items:
- key: postgres-password
path: postgres-password
secretName: postgres-password-secret
- key: grafana-password
path: grafana-password
secretName: grafana-password-secret
- name: grafana-datasources
configMap:
name: grafana-datasources-configmap
Expand Down
3 changes: 2 additions & 1 deletion deployment/templates/mq-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ kind: ConfigMap
metadata:
name: mq-plugins-configmap
data:
rabbitmq-plugins: "[rabbitmq_prometheus]."
enabled_plugins: |
[rabbitmq_prometheus].
2 changes: 1 addition & 1 deletion deployment/templates/mq-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
hostPort: 15692
protocol: TCP
volumeMounts:
- mountPath: /etc/rabbitmq/enabled_plugins
- mountPath: /etc/rabbitmq
name: mq-plugins
- mountPath: /var/lib/rabbitmq
name: mq-claim
Expand Down
2 changes: 1 addition & 1 deletion deployment/templates/web-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: web-server
image: tyknkd/newsanalyzer-webserver
image: tyknkd/newsanalyzer-webserver:0.1.0
env:
- name: ANALYZER_EXCHANGE
valueFrom:
Expand Down

0 comments on commit 87d9bb6

Please sign in to comment.