-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: calendar working and deployable with observability in kubernetes
- Loading branch information
1 parent
c991816
commit 091dfba
Showing
17 changed files
with
498 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
dapr-distributed-calendar/fluent/fluentd-config-map.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: fluentd-config | ||
namespace: kube-system | ||
data: | ||
fluent.conf: | | ||
<match fluent.**> | ||
@type null | ||
</match> | ||
<match kubernetes.var.log.containers.**fluentd**.log> | ||
@type null | ||
</match> | ||
<match kubernetes.var.log.containers.**kube-system**.log> | ||
@type null | ||
</match> | ||
<match kubernetes.var.log.containers.**kibana**.log> | ||
@type null | ||
</match> | ||
<source> | ||
@type tail | ||
path /var/log/containers/*.log | ||
pos_file fluentd-docker.pos | ||
time_format %Y-%m-%dT%H:%M:%S | ||
tag kubernetes.* | ||
<parse> | ||
@type multi_format | ||
<pattern> | ||
format json | ||
time_key time | ||
time_type string | ||
time_format "%Y-%m-%dT%H:%M:%S.%NZ" | ||
keep_time_key false | ||
</pattern> | ||
<pattern> | ||
format regexp | ||
expression /^(?<time>.+) (?<stream>stdout|stderr)( (?<logtag>.))? (?<log>.*)$/ | ||
time_format '%Y-%m-%dT%H:%M:%S.%N%:z' | ||
keep_time_key false | ||
</pattern> | ||
</parse> | ||
</source> | ||
<filter kubernetes.**> | ||
@type kubernetes_metadata | ||
@id filter_kube_metadata | ||
</filter> | ||
<filter kubernetes.var.log.containers.**> | ||
@type parser | ||
<parse> | ||
@type json | ||
format json | ||
time_key time | ||
time_type string | ||
time_format "%Y-%m-%dT%H:%M:%S.%NZ" | ||
keep_time_key false | ||
</parse> | ||
key_name log | ||
replace_invalid_sequence true | ||
emit_invalid_record_to_error true | ||
reserve_data true | ||
</filter> | ||
<match **> | ||
@type elasticsearch | ||
@id out_es | ||
@log_level info | ||
include_tag_key true | ||
host "#{ENV['FLUENT_ELASTICSEARCH_HOST']}" | ||
port "#{ENV['FLUENT_ELASTICSEARCH_PORT']}" | ||
path "#{ENV['FLUENT_ELASTICSEARCH_PATH']}" | ||
scheme "#{ENV['FLUENT_ELASTICSEARCH_SCHEME'] || 'http'}" | ||
ssl_verify "#{ENV['FLUENT_ELASTICSEARCH_SSL_VERIFY'] || 'true'}" | ||
ssl_version "#{ENV['FLUENT_ELASTICSEARCH_SSL_VERSION'] || 'TLSv1_2'}" | ||
user "#{ENV['FLUENT_ELASTICSEARCH_USER'] || use_default}" | ||
password "#{ENV['FLUENT_ELASTICSEARCH_PASSWORD'] || use_default}" | ||
reload_connections "#{ENV['FLUENT_ELASTICSEARCH_RELOAD_CONNECTIONS'] || 'false'}" | ||
reconnect_on_error "#{ENV['FLUENT_ELASTICSEARCH_RECONNECT_ON_ERROR'] || 'true'}" | ||
reload_on_failure "#{ENV['FLUENT_ELASTICSEARCH_RELOAD_ON_FAILURE'] || 'true'}" | ||
log_es_400_reason "#{ENV['FLUENT_ELASTICSEARCH_LOG_ES_400_REASON'] || 'false'}" | ||
logstash_prefix "#{ENV['FLUENT_ELASTICSEARCH_LOGSTASH_PREFIX'] || 'dapr'}" | ||
logstash_dateformat "#{ENV['FLUENT_ELASTICSEARCH_LOGSTASH_DATEFORMAT'] || '%Y.%m.%d'}" | ||
logstash_format "#{ENV['FLUENT_ELASTICSEARCH_LOGSTASH_FORMAT'] || 'true'}" | ||
index_name "#{ENV['FLUENT_ELASTICSEARCH_LOGSTASH_INDEX_NAME'] || 'dapr'}" | ||
type_name "#{ENV['FLUENT_ELASTICSEARCH_LOGSTASH_TYPE_NAME'] || 'fluentd'}" | ||
include_timestamp "#{ENV['FLUENT_ELASTICSEARCH_INCLUDE_TIMESTAMP'] || 'false'}" | ||
template_name "#{ENV['FLUENT_ELASTICSEARCH_TEMPLATE_NAME'] || use_nil}" | ||
template_file "#{ENV['FLUENT_ELASTICSEARCH_TEMPLATE_FILE'] || use_nil}" | ||
template_overwrite "#{ENV['FLUENT_ELASTICSEARCH_TEMPLATE_OVERWRITE'] || use_default}" | ||
sniffer_class_name "#{ENV['FLUENT_SNIFFER_CLASS_NAME'] || 'Fluent::Plugin::ElasticsearchSimpleSniffer'}" | ||
request_timeout "#{ENV['FLUENT_ELASTICSEARCH_REQUEST_TIMEOUT'] || '5s'}" | ||
<buffer> | ||
flush_thread_count "#{ENV['FLUENT_ELASTICSEARCH_BUFFER_FLUSH_THREAD_COUNT'] || '8'}" | ||
flush_interval "#{ENV['FLUENT_ELASTICSEARCH_BUFFER_FLUSH_INTERVAL'] || '5s'}" | ||
chunk_limit_size "#{ENV['FLUENT_ELASTICSEARCH_BUFFER_CHUNK_LIMIT_SIZE'] || '2M'}" | ||
queue_limit_length "#{ENV['FLUENT_ELASTICSEARCH_BUFFER_QUEUE_LIMIT_LENGTH'] || '32'}" | ||
retry_max_interval "#{ENV['FLUENT_ELASTICSEARCH_BUFFER_RETRY_MAX_INTERVAL'] || '30'}" | ||
retry_forever true | ||
</buffer> | ||
</match> |
100 changes: 100 additions & 0 deletions
100
dapr-distributed-calendar/fluent/fluentd-dapr-with-rbac.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: fluentd | ||
namespace: kube-system | ||
|
||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: fluentd | ||
namespace: kube-system | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- pods | ||
- namespaces | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
|
||
--- | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: fluentd | ||
namespace: default | ||
roleRef: | ||
kind: ClusterRole | ||
name: fluentd | ||
apiGroup: rbac.authorization.k8s.io | ||
subjects: | ||
- kind: ServiceAccount | ||
name: fluentd | ||
namespace: kube-system | ||
--- | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: fluentd | ||
namespace: kube-system | ||
labels: | ||
k8s-app: fluentd-logging | ||
version: v1 | ||
spec: | ||
selector: | ||
matchLabels: | ||
k8s-app: fluentd-logging | ||
version: v1 | ||
template: | ||
metadata: | ||
labels: | ||
k8s-app: fluentd-logging | ||
version: v1 | ||
spec: | ||
serviceAccount: fluentd | ||
serviceAccountName: fluentd | ||
tolerations: | ||
- key: node-role.kubernetes.io/master | ||
effect: NoSchedule | ||
containers: | ||
- name: fluentd | ||
image: fluent/fluentd-kubernetes-daemonset:v1.9.2-debian-elasticsearch7-1.0 | ||
env: | ||
- name: FLUENT_ELASTICSEARCH_HOST | ||
value: "elasticsearch-master.observability" | ||
- name: FLUENT_ELASTICSEARCH_PORT | ||
value: "9200" | ||
- name: FLUENT_ELASTICSEARCH_SCHEME | ||
value: "http" | ||
- name: FLUENT_UID | ||
value: "0" | ||
resources: | ||
limits: | ||
memory: 200Mi | ||
requests: | ||
cpu: 100m | ||
memory: 200Mi | ||
volumeMounts: | ||
- name: varlog | ||
mountPath: /var/log | ||
- name: varlibdockercontainers | ||
mountPath: /var/lib/docker/containers | ||
readOnly: true | ||
- name: fluentd-config | ||
mountPath: /fluentd/etc | ||
terminationGracePeriodSeconds: 30 | ||
volumes: | ||
- name: varlog | ||
hostPath: | ||
path: /var/log | ||
- name: varlibdockercontainers | ||
hostPath: | ||
path: /var/lib/docker/containers | ||
- name: fluentd-config | ||
configMap: | ||
name: fluentd-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.