From 041a66c3a37d487e6d8d77d45d79d06472764144 Mon Sep 17 00:00:00 2001 From: Daxin Wang Date: Wed, 29 Jun 2022 10:58:41 +0800 Subject: [PATCH 1/3] declare the 9500 port in the agent's deployment file Signed-off-by: Daxin Wang --- deploy/agent/kindling-deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deploy/agent/kindling-deploy.yml b/deploy/agent/kindling-deploy.yml index 4871aa402..2d124bc70 100644 --- a/deploy/agent/kindling-deploy.yml +++ b/deploy/agent/kindling-deploy.yml @@ -26,6 +26,11 @@ spec: memory: 1Gi requests: memory: 300Mi + ports: + - containerPort: 9500 + hostPort: 9500 + name: http + protocol: TCP env: - name: HOST_PROC value: /host/proc From 6f4e8e7fa680a61525dfa78a1faac1be22b9a697 Mon Sep 17 00:00:00 2001 From: Daxin Wang Date: Thu, 30 Jun 2022 15:21:16 +0800 Subject: [PATCH 2/3] update changelog Signed-off-by: Daxin Wang --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1fe884ca..416791407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ 1. All notable changes to this project will be documented in this file. 2. Records in this file are not identical to the title of their Pull Requests. A detailed description is necessary for understanding what changes are and why they are made. +## Unreleased +### Enhancements +- Declare the 9500 port in the agent's deployment file ([#282](https://github.com/CloudDectective-Harmonycloud/kindling/pull/282)) + ## v0.3.0 - 2022-06-29 ### New features - Add a URL clustering method to reduce the cardinality of the entity metrics. Configuration options are provided to choose which method to use. ([#268](https://github.com/CloudDectective-Harmonycloud/kindling/pull/268)) From 17be07530bb9662399b5afc8969c5650c850be7d Mon Sep 17 00:00:00 2001 From: Daxin Wang Date: Thu, 30 Jun 2022 15:41:35 +0800 Subject: [PATCH 3/3] remove unnecessary hostport Signed-off-by: Daxin Wang --- deploy/agent/kindling-deploy.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/deploy/agent/kindling-deploy.yml b/deploy/agent/kindling-deploy.yml index 2d124bc70..54e4332f3 100644 --- a/deploy/agent/kindling-deploy.yml +++ b/deploy/agent/kindling-deploy.yml @@ -28,8 +28,6 @@ spec: memory: 300Mi ports: - containerPort: 9500 - hostPort: 9500 - name: http protocol: TCP env: - name: HOST_PROC