diff --git a/aws/aws-alb-ingress-controller/base/cluster-role.yaml b/aws/aws-alb-ingress-controller/base/cluster-role.yaml
index ee5e2d0c4e..8910eaad16 100644
--- a/aws/aws-alb-ingress-controller/base/cluster-role.yaml
+++ b/aws/aws-alb-ingress-controller/base/cluster-role.yaml
@@ -6,7 +6,6 @@ rules:
- apiGroups:
- ""
- extensions
- - networking.k8s.io
resources:
- configmaps
- endpoints
@@ -33,4 +32,4 @@ rules:
verbs:
- get
- list
- - watch
+ - watch
\ No newline at end of file
diff --git a/aws/aws-alb-ingress-controller/base/deployment.yaml b/aws/aws-alb-ingress-controller/base/deployment.yaml
index 08620515b6..e4b748b25c 100644
--- a/aws/aws-alb-ingress-controller/base/deployment.yaml
+++ b/aws/aws-alb-ingress-controller/base/deployment.yaml
@@ -48,6 +48,6 @@ spec:
# List of regions: http://docs.aws.amazon.com/general/latest/gr/rande.html#vpc_region
# - --aws-region=us-west-1
# Repository location of the ALB Ingress Controller.
- image: docker.io/amazon/aws-alb-ingress-controller:v1.1.2
+ image: docker.io/amazon/aws-alb-ingress-controller
imagePullPolicy: Always
serviceAccountName: alb-ingress-controller
diff --git a/aws/aws-alb-ingress-controller/base/kustomization.yaml b/aws/aws-alb-ingress-controller/base/kustomization.yaml
index d68b148e5f..ef54cbf074 100644
--- a/aws/aws-alb-ingress-controller/base/kustomization.yaml
+++ b/aws/aws-alb-ingress-controller/base/kustomization.yaml
@@ -13,7 +13,7 @@ generatorOptions:
images:
- name: docker.io/amazon/aws-alb-ingress-controller
newName: docker.io/amazon/aws-alb-ingress-controller
- newTag: v1.1.2
+ newTag: v1.1.5
configMapGenerator:
- name: alb-ingress-controller-parameters
env: params.env
diff --git a/aws/fluentd-cloud-watch/base/configmap.yaml b/aws/fluentd-cloud-watch/base/configmap.yaml
index 1a7854c3db..789555bbc5 100644
--- a/aws/fluentd-cloud-watch/base/configmap.yaml
+++ b/aws/fluentd-cloud-watch/base/configmap.yaml
@@ -8,6 +8,8 @@ data:
fluent.conf: |
@include containers.conf
@include systemd.conf
+ @include host.conf
+
@type null
@@ -17,6 +19,7 @@ data:
@id in_tail_container_logs
@label @containers
path /var/log/containers/*.log
+ exclude_path ["/var/log/containers/cloudwatch-agent*", "/var/log/containers/fluentd*"]
pos_file /var/log/fluentd-containers.log.pos
tag *
read_from_head true
@@ -25,11 +28,61 @@ data:
time_format %Y-%m-%dT%H:%M:%S.%NZ
+
+
+ @type tail
+ @id in_tail_cwagent_logs
+ @label @cwagentlogs
+ path /var/log/containers/cloudwatch-agent*
+ pos_file /var/log/cloudwatch-agent.log.pos
+ tag *
+ read_from_head true
+
+ @type json
+ time_format %Y-%m-%dT%H:%M:%S.%NZ
+
+
+
+
+ @type tail
+ @id in_tail_fluentd_logs
+ @label @fluentdlogs
+ path /var/log/containers/fluentd*
+ pos_file /var/log/fluentd.log.pos
+ tag *
+ read_from_head true
+
+ @type json
+ time_format %Y-%m-%dT%H:%M:%S.%NZ
+
+
+
+
+
+
+
+
+