-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/v23.2.x' into backport-pr-1315…
…5-v23.2.x-952
- Loading branch information
Showing
101 changed files
with
5,849 additions
and
704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: check formatting | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
trigger-bump: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: redpanda-data/sparse-checkout | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
path: sparse-checkout | ||
|
||
- uses: ./sparse-checkout | ||
with: | ||
repository: redpanda-data/vtools | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
patterns: actions | ||
path: ghca | ||
|
||
- name: Trigger Versions Bump Buildkite Job | ||
uses: ./ghca/actions/buildkite-pipeline-trigger | ||
with: | ||
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }} | ||
buildkite_org: redpanda | ||
buildkite_pipeline: ${{ vars.CLOUD_PIPELINE }} | ||
commit: HEAD | ||
branch: ${{ vars.CLOUD_DEFAULT_BRANCH }} | ||
message: Install Pack version bump trigger | ||
env: '{"INSTALLPACK_BUMP": "1", "RELEASE_VERSION": "${{ github.ref_name }}"}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/go/k8s/apis/cluster.redpanda.com/v1alpha1/events_topic.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package v1alpha1 | ||
|
||
// These constants define valid event severity values. | ||
const ( | ||
// EventTopicCreationFailure indicate and error when topic creation | ||
// was not successful. | ||
EventTopicCreationFailure string = "topicCreationFailure" | ||
// EventTopicDeletionFailure indicate and error when topic deletion | ||
// was not successful. | ||
EventTopicDeletionFailure string = "topicDeletionFailure" | ||
// EventTopicConfigurationAlteringFailure indicate and error when topic configuration altering | ||
// was not successful. | ||
EventTopicConfigurationAlteringFailure string = "topicConfigurationAlteringFailure" | ||
// EventTopicConfigurationDescribeFailure indicate and error when topic configuration describe | ||
// was not successful. | ||
EventTopicConfigurationDescribeFailure string = "topicConfigurationDescribeFailure" | ||
// EventTopicAlreadySynced indicate topic is already synced | ||
EventTopicAlreadySynced string = "topicAlreadySynced" | ||
// EventTopicSynced indicate topic is synced | ||
EventTopicSynced string = "topicSynced" | ||
) |
29 changes: 29 additions & 0 deletions
29
src/go/k8s/apis/cluster.redpanda.com/v1alpha1/groupversion_info.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2021-2023 Redpanda Data, Inc. | ||
// | ||
// Use of this software is governed by the Business Source License | ||
// included in the file licenses/BSL.md | ||
// | ||
// As of the Change Date specified in that file, in accordance with | ||
// the Business Source License, use of this software will be governed | ||
// by the Apache License, Version 2.0 | ||
|
||
// Package v1alpha1 contains API Schema definitions for the cluster.redpanda.com v1alpha1 API group | ||
// +kubebuilder:object:generate=true | ||
// +groupName=cluster.redpanda.com | ||
package v1alpha1 | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"sigs.k8s.io/controller-runtime/pkg/scheme" | ||
) | ||
|
||
var ( | ||
// GroupVersion is group version used to register these objects | ||
GroupVersion = schema.GroupVersion{Group: "cluster.redpanda.com", Version: "v1alpha1"} | ||
|
||
// SchemeBuilder is used to add go types to the GroupVersionKind scheme | ||
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} | ||
|
||
// AddToScheme adds the types in this group-version to the given scheme. | ||
AddToScheme = SchemeBuilder.AddToScheme | ||
) |
Oops, something went wrong.