Skip to content

Commit 5c25f42

Browse files
Merge pull request #82 from oracle-quickstart/v3.4.3
v3.4.3
2 parents 4fa73a6 + 44acb60 commit 5c25f42

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 2024-06-18
4+
### Changed
5+
- Fluentd collector container image uptake to 1.4.3 having OS and other dependency updates.
6+
- Dockerfile (supporting custom container image builds) changes to remove patch version dependency on ruby 3.1 and related packages.
7+
38
## 2024-05-13
49
### Changed
510
- Fluentd collector container image uptake to 1.4.2 having changes to uptake OCI 2.21.0.

charts/logan/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: v2
55
name: oci-onm-logan
66
description: Charts for sending Kubernetes platform logs, compute logs, and Kubernetes Objects information to OCI Logging Analytics.
77
type: application
8-
version: 3.4.2
8+
version: 3.4.3
99
appVersion: "3.0.0"
1010

1111
dependencies:

charts/logan/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ image:
4848
# Image pull secrets for. Secret must be in the namespace defined by namespace
4949
imagePullSecrets:
5050
# -- Replace this value with actual docker image url
51-
url: container-registry.oracle.com/oci_observability_management/oci-la-fluentd-collector:1.4.2
51+
url: container-registry.oracle.com/oci_observability_management/oci-la-fluentd-collector:1.4.3
5252
# -- Image pull policy
5353
imagePullPolicy: Always
5454

charts/oci-onm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 3.4.2
21+
version: 3.4.3
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to
@@ -32,7 +32,7 @@ dependencies:
3232
repository: "file://../common"
3333
condition: oci-onm-common.enabled
3434
- name: oci-onm-logan
35-
version: "3.4.2"
35+
version: "3.4.3"
3636
repository: "file://../logan"
3737
condition: oci-onm-logan.enabled
3838
- name: oci-onm-mgmt-agent

charts/oci-onm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ oci-onm-logan:
3131
kubernetesClusterID: "{{ .Values.global.kubernetesClusterID }}"
3232
kubernetesClusterName: "{{ .Values.global.kubernetesClusterName }}"
3333
image:
34-
url: container-registry.oracle.com/oci_observability_management/oci-la-fluentd-collector:1.4.2
34+
url: container-registry.oracle.com/oci_observability_management/oci-la-fluentd-collector:1.4.3
3535
# Go to OCI Logging Analytics Administration, click Service Details, and note the namespace value.
3636
ociLANamespace:
3737
# OCI Logging Analytics Default Log Group OCID

logan/docker-images/v1.0/oraclelinux/8-slim/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ COPY Gemfile* /fluentd/
2222
# Install ruby, ruby-libs along with rubygems and bundler.
2323
RUN microdnf -y module enable ruby:3.1 \
2424
# Install ruby and ruby-libs, disabling week dependencies
25-
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs ruby-3.1.2 ruby-libs-3.1.2 \
25+
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs ruby ruby-libs \
2626
# Install rubygems (it's dependencies rubygem-openssl rubygem-psych), disabling week dependencies
27-
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs rubygems-3.3.7 \
27+
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs rubygems \
2828
&& gem install bundler -v 2.3.25 \
2929
# Install development dependent packages for gems native installation
3030
&& microdnf --enablerepo ol8_codeready_builder -y install --nodocs gcc make redhat-rpm-config openssl ruby-devel gcc-c++ libtool libffi-devel bzip2 git libyaml-devel \
@@ -59,9 +59,9 @@ ENV FLUENTD_DISABLE_BUNDLER_INJECTION 1
5959
# Install ruby, ruby-libs along with rubygems and bundler.
6060
RUN microdnf -y module enable ruby:3.1 \
6161
# Install ruby and ruby-libs, disabling week dependencies
62-
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs ruby-3.1.2 ruby-libs-3.1.2 \
62+
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs ruby ruby-libs \
6363
# Install rubygems (it's dependencies rubygem-openssl rubygem-psych), disabling week dependencies
64-
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs rubygems-3.3.7 \
64+
&& microdnf -y install --setopt=install_weak_deps=0 --nodocs rubygems \
6565
&& gem install bundler -v 2.3.25 \
6666
&& bundle config --local path /fluentd/vendor/bundle \
6767
# clear caches

0 commit comments

Comments
 (0)