No description
  • Go 93.9%
  • Makefile 3.3%
  • Dockerfile 2.5%
  • Shell 0.3%
Find a file
dependabot[bot] b22d078d14
Bump golangci/golangci-lint-action from 6 to 7 (#693)
* Bump golangci/golangci-lint-action from 6 to 7

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 7.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v6...v7)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump golangci-lint to v2.0 and fix linting issues

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andreas Fritzler <andreas.fritzler@sap.com>
2025-03-26 10:34:28 +01:00
.github Bump golangci/golangci-lint-action from 6 to 7 (#693) 2025-03-26 10:34:28 +01:00
api Added ResourceVersion (#540) 2024-05-29 10:53:31 +02:00
cmd Fixed WaitGroup bug (#580) 2024-08-14 14:50:28 +02:00
config Drop usage of kube-rbac-proxy (#664) 2025-02-14 10:11:19 +01:00
docs Refactor project structure (#490) 2024-04-02 08:44:29 +02:00
hack Make project REUSE compliant (#409) 2023-11-27 10:44:45 +01:00
internal Bump golangci/golangci-lint-action from 6 to 7 (#693) 2025-03-26 10:34:28 +01:00
LICENSES Make project REUSE compliant (#409) 2023-11-27 10:44:45 +01:00
tests/integration Fix integration test setup by adding VolumeEventStoreOptions (#582) 2024-08-14 14:48:04 +02:00
.dockerignore Initial commit 2022-08-16 17:26:03 +02:00
.gitignore Fix ImagePopulator, VolumePool and Volume controller (#17) 2022-08-24 17:21:10 +02:00
.golangci.yaml Bump golangci/golangci-lint-action from 6 to 7 (#693) 2025-03-26 10:34:28 +01:00
CODE_OF_CONDUCT.md Fix links after project rename (#410) 2023-11-27 12:05:17 +01:00
CODEOWNERS Refactor project name to ceph-provider and updated dependencies (#404) 2023-11-24 15:56:10 +01:00
CONTRIBUTING.md Fix links after project rename (#410) 2023-11-27 12:05:17 +01:00
Dockerfile Bump golang from 1.23.6-bookworm to 1.24.1-bookworm (#676) 2025-03-06 10:21:58 +01:00
go.mod Bump github.com/ironcore-dev/ironcore from 0.2.0 to 0.2.1 (#646) 2025-03-06 10:35:25 +01:00
go.sum Bump github.com/ironcore-dev/ironcore from 0.2.0 to 0.2.1 (#646) 2025-03-06 10:35:25 +01:00
LICENSE Add license file 2022-10-28 10:00:14 +02:00
Makefile Bump golangci/golangci-lint-action from 6 to 7 (#693) 2025-03-26 10:34:28 +01:00
mkdocs.yml Change documentation title (#411) 2023-11-27 13:03:49 +01:00
README.md Switch to ironcore-image (#415) 2023-11-30 14:04:00 +01:00
REUSE.toml Update reuse configuration (#677) 2025-03-06 10:15:04 +01:00

ceph-provider

REUSE status Go Report Card GitHub License PRs Welcome

ceph-provider is a Ceph based provider implementation of the ironcore Volume and Bucket types.

Please consult the project documentation for additional information.

Getting Started

Youll need a Kubernetes cluster to run against. You can use KIND to get a local cluster for testing, or run against a remote cluster. Note: Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster kubectl cluster-info shows).

Running on the cluster

  1. Install Instances of Custom Resources:
kubectl apply -f config/samples/
  1. Build and push your image to the location specified by IMG:
make docker-build docker-push IMG=<some-registry>/ceph-provider:tag
  1. Deploy the controller to the cluster with the image specified by IMG:
make deploy IMG=<some-registry>/ceph-provider:tag

Undeploy controller

UnDeploy the controller to the cluster:

make undeploy

Contributing

We'd love to get feedback from you. Please report bugs, suggestions or post questions by opening a GitHub issue.

How it works

This project aims to follow the Kubernetes Operator pattern

It uses Controllers which provides a reconcile function responsible for synchronizing resources untile the desired state is reached on the cluster

Test It Out

Run your controller (this will run in the foreground, so switch to a new terminal if you want to leave it running):

make run

NOTE: You can also run this in one step by running: make install run

NOTE: Run make --help for more information on all potential make targets

More information can be found via the Kubebuilder Documentation

License

Copyright 2022.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.