Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1,850 changes: 1,850 additions & 0 deletions THIRD_PARTY_LICENSES.txt

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions buildrpm/kube-controller-tools.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

%if 0%{?with_debug}
# https://bugzilla.redhat.com/show_bug.cgi?id=995136#c12
%global _dwz_low_mem_die_limit 0
%else
%global debug_package %{nil}
%endif

%global _buildhost build-ol%{?oraclelinux}-%{?_arch}.oracle.com

Name: kube-controller-tools
Version: 0.17.2
Release: 1%{?dist}
Summary: Tools for writing Kubernetes controllers
License: Apache-2.0
Group: System/Management
Url: https://github.com/kubernetes-sigs/controller-tools
Source: %{name}-%{version}.tar.bz2

%description
Tools for writing Kubernetes controllers

%prep
%setup -q -n %{name}-%{version}

%build
go build -o controller-gen ./cmd/controller-gen
go build -o helpgen ./cmd/helpgen
go build -o type-scaffold ./cmd/type-scaffold

%install
install -m 755 -d %{buildroot}%{_bindir}
install -p -m 755 -t %{buildroot}/%{_bindir} controller-gen
install -p -m 755 -t %{buildroot}/%{_bindir} helpgen
install -p -m 755 -t %{buildroot}/%{_bindir} type-scaffold

%files
%license LICENSE THIRD_PARTY_LICENSES.txt
/usr/bin/controller-gen
/usr/bin/helpgen
/usr/bin/type-scaffold

%changelog
* Fri Sep 26 2025 Olcne-Builder Jenkins <[email protected]> - 0.17.2-1
- Added Oracle specific build files for controller-tools.

12 changes: 12 additions & 0 deletions olm/jenkins/ci/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@Library('olcne-pipeline')
import com.oracle.olcne.pipeline.BranchPattern

olcnePipeline(
branchPattern: new BranchPattern(master: 'oracle/release/.*', feature: '(?!^release/.*$)(^.*$)'),
customStages: [container: [enabled: false]],
platforms: ['ol8'],
ol8ModulesToEnable: ['go-toolset:ol8addon'],
ol8ModulesToDisable: ['go-toolset'],
architectures: ['x86_64', 'aarch64'],
)

20 changes: 20 additions & 0 deletions vendor/github.com/fatih/color/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

189 changes: 189 additions & 0 deletions vendor/github.com/fatih/color/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading