Skip to content

Commit 71bafc3

Browse files
santhoshkvudaniravg75kgvarunprasebhanaga-barri
authored
V3.0.0 (#38)
V3.0.0 Release --------- Co-authored-by: niravg75 <nirav.gandhi@oracle.com> Co-authored-by: KGV <80283985+kgvarun@users.noreply.github.com> Co-authored-by: prasebha <prasenjit.bhattacharjee@oracle.com> Co-authored-by: kumar-ola <kumar.varun@oracle.com> Co-authored-by: Nirav Gandhi <nirav.gandhi@gmail.com> Co-authored-by: naga-barri <98697018+naga-barri@users.noreply.github.com> Co-authored-by: Naga Raju Barri <naga.barri@oracle.com> Co-authored-by: Paritosh Paliwal <paritoshedx@gmail.com> Co-authored-by: papaliwa <paritosh.paliwal@oracle.com>
1 parent d76844a commit 71bafc3

File tree

120 files changed

+7353
-1932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+7353
-1932
lines changed

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# # # # Copyright (c) 2023, Oracle and/or its affiliates.
2+
# # # # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
name: Release Charts
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
release:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
23+
24+
- name: Run chart-releaser
25+
uses: helm/chart-releaser-action@v1.1.0
26+
with:
27+
charts_dir: charts
28+
env:
29+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
14
.DS_Store
25

36
####
@@ -54,4 +57,9 @@ terraform.rc
5457
# Ignore util dir
5558
logan/util/*
5659

60+
# helm-chart
61+
charts/oci-onm/Chart.lock
62+
charts/oci-onm/charts/
5763

64+
# zip artifacts
65+
releases/

.pre-commit-config.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright (c) 2023, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
repos:
5+
- repo: https://github.com/pre-commit/pre-commit-hooks
6+
rev: v2.3.0
7+
hooks:
8+
- id: check-yaml
9+
args: [--allow-multiple-documents]
10+
exclude: '^charts/.*/templates/'
11+
- id: end-of-file-fixer
12+
- id: trailing-whitespace
13+
#- id: check-json
14+
- id: check-merge-conflict
15+
- id: check-symlinks
16+
#- repo: https://github.com/Lucas-C/pre-commit-hooks
17+
# rev: v1.5.1
18+
# hooks:
19+
# - id: insert-license
20+
# exclude: '*.json|*.txt|.*.md|.*.txt|.pre-commit-config.yaml'
21+
# args:
22+
# - --license-filepath
23+
# - ./docs/license-short.txt
24+
- repo: https://github.com/norwoodj/helm-docs
25+
rev: v1.2.0
26+
hooks:
27+
- id: helm-docs
28+
args:
29+
- --chart-search-root=charts
30+
# The `./` makes it relative to the chart-search-root set above
31+
#- --template-files=./_templates.gotmpl

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
# Change Log
22

3-
## 2022-02-07
3+
## 2023-06-14
4+
### Added
5+
- Kubernetes Metrics Collection to OCI Monitoring using OCI Management Agent.
6+
- Support for Kubernetes Service and EndpointSlice Object logs collection.
7+
### Changed
8+
- Refactoring of helm chart, terraform and stack/market place app to support the consolidation of logs, objects and metrics collection.
9+
### Breaking Changes
10+
- The refactoring work done in this version, may cause issues if you upgrade to this version (v3.0.0) from previous versions. Refer [here](README.md#2x-to-3x) for further details.
11+
12+
## 2023-02-07
413
### Added
514
- Create a new mount (rw) using the value provided for baseDir.
6-
- Expose "encoding" parameter of Fluentd's tail plugin as part of values.yaml, which allows users to override default encoding (ASCII-8BIT) for applicable logs/log types.
15+
- Expose "encoding" parameter of Fluentd's tail plugin as part of values.yaml, which allows users to override default encoding (ASCII-8BIT) for applicable logs/log types.
716
- Partial CRI logs handling.
8-
- Oracle Resource Manager / Terraform support for deploying the solution.
17+
- Oracle Resource Manager / Terraform support for deploying the solution.
918
### Changed
1019
- Modified /var/log to mount as readonly by default, except when /var/log is set as baseDir (to store Fluentd state, buffer etc.,).
1120
### Breaking Changes
1221
- Logging Analytics Fluentd Output plugin log location will be derived using baseDir instead using value of fluentd:ociLoggingAnalyticsOutputPlugin:plugin_log_location. The default value still remains unchanged and is a non breaking change except if it was modified to a different value.
1322

1423
## 2022-08-30
1524
### Added
16-
- Helm chart templatisation/parameterisation to provide granular level control on the chart and its values.
17-
- Support for custom ServiceAccount.
25+
- Helm chart templatisation/parameterisation to provide granular level control on the chart and its values.
26+
- Support for custom ServiceAccount.
1827
### Breaking Changes
1928
- If you have not modified any of the templates values.yaml for any customisation including custom Fluentd configuration etc., then upgrading to this version is a non breaking change. In case, if you have any modifications or customisations, then you may need to adjust those according to the new templatisation format before upgrading to this version.
2029

@@ -35,7 +44,7 @@
3544
- Pod Annotations based customiation of configuration paremeters (oci_la_log_source_name, oci_la_log_group_id, oci_la_entity_id) for logs collected through "Kubernetes Container Generic Logs".
3645
- README update for custom configuration documentation.
3746
- Flush interval and timeout label configuration for Concat plugin section.
38-
47+
3948
## 2022-02-24
4049
### Added
4150
- Oracle Linux 8 based Docker Image support.

LICENSE

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved.
2+
3+
The Universal Permissive License (UPL), Version 1.0
4+
5+
Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this
6+
software, associated documentation and/or data (collectively the "Software"), free of charge and under any and
7+
all copyright rights in the Software, and any and all patent rights owned or freely licensable by each licensor
8+
hereunder covering either (i) the unmodified Software as contributed to or provided by such licensor, or
9+
(ii) the Larger Works (as defined below), to deal in both
10+
11+
(a) the Software, and
12+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if one is included with the Software
13+
(each a “Larger Work” to which the Software is contributed by such licensors),
14+
15+
without restriction, including without limitation the rights to copy, create derivative works of, display,
16+
perform, and distribute the Software and make, use, sell, offer for sale, import, export, have made, and have
17+
sold the Software and the Larger Work(s), and to sublicense the foregoing rights on either these or other terms.
18+
19+
This license is subject to the following condition:
20+
The above copyright notice and either this complete permission notice or at a minimum a reference to the UPL must
21+
be included in all copies or substantial portions of the Software.
22+
23+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
24+
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
26+
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
27+
IN THE SOFTWARE.

0 commit comments

Comments
 (0)