Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
|
af8244e53a | |
|
0e85028f68 | |
|
63281440c1 | |
|
7e4ac4cc45 | |
|
9fb5e5a384 |
|
@ -2,4 +2,4 @@
|
||||||
# Each line is a file pattern followed by one or more owners.
|
# Each line is a file pattern followed by one or more owners.
|
||||||
|
|
||||||
# These owners will be the default owners for everything in the repo.
|
# These owners will be the default owners for everything in the repo.
|
||||||
* @rahulchheda @ksatchit @chandankumar4 @rajdas98
|
* @ksatchit @ispeakc0de @imrajdas
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
# Install golang
|
# Install golang
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.20.0
|
go-version: 1.22
|
||||||
|
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
|
@ -23,6 +23,8 @@ jobs:
|
||||||
|
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
uses: reviewdog/action-golangci-lint@v2
|
uses: reviewdog/action-golangci-lint@v2
|
||||||
|
with:
|
||||||
|
golangci_lint_flags: "--timeout=10m"
|
||||||
|
|
||||||
- name: unused-package check
|
- name: unused-package check
|
||||||
run: make unused-package-check
|
run: make unused-package-check
|
||||||
|
@ -81,7 +83,7 @@ jobs:
|
||||||
chmod +x ${{ github.workspace }}/image.tar
|
chmod +x ${{ github.workspace }}/image.tar
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: myimage
|
name: myimage
|
||||||
path: |
|
path: |
|
||||||
|
@ -94,7 +96,7 @@ jobs:
|
||||||
# Install golang
|
# Install golang
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.20.0
|
go-version: 1.22
|
||||||
|
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
|
@ -117,7 +119,7 @@ jobs:
|
||||||
make deps
|
make deps
|
||||||
|
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: myimage
|
name: myimage
|
||||||
path: ${{ github.workspace }}
|
path: ${{ github.workspace }}
|
||||||
|
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.20.0
|
go-version: 1.22
|
||||||
|
|
||||||
- name: Setting up GOPATH
|
- name: Setting up GOPATH
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
# Install golang
|
# Install golang
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.20.0
|
go-version: 1.22
|
||||||
|
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
|
@ -31,7 +31,6 @@ jobs:
|
||||||
|
|
||||||
image-build:
|
image-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: tests
|
|
||||||
steps:
|
steps:
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
|
@ -60,44 +59,3 @@ jobs:
|
||||||
DNAME: ${{ secrets.DNAME }}
|
DNAME: ${{ secrets.DNAME }}
|
||||||
DPASS: ${{ secrets.DPASS }}
|
DPASS: ${{ secrets.DPASS }}
|
||||||
run: make push-chaos-operator
|
run: make push-chaos-operator
|
||||||
|
|
||||||
tests:
|
|
||||||
needs: pre-checks
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
# Checkout to the latest commit
|
|
||||||
# On specific directory/path
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
# Install golang
|
|
||||||
- uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: 1.20.0
|
|
||||||
|
|
||||||
#Install and configure a kind cluster
|
|
||||||
- name: Installing Prerequisites (K3S Cluster)
|
|
||||||
env:
|
|
||||||
KUBECONFIG: /etc/rancher/k3s/k3s.yaml
|
|
||||||
run: |
|
|
||||||
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.20.14-rc1+k3s1 sh -s - --docker --write-kubeconfig-mode 664
|
|
||||||
kubectl wait node --all --for condition=ready --timeout=90s
|
|
||||||
mkdir -p $HOME/.kube
|
|
||||||
cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
|
|
||||||
kubectl get nodes
|
|
||||||
|
|
||||||
- name: Dependency checks
|
|
||||||
run: |
|
|
||||||
make deps
|
|
||||||
|
|
||||||
- name: Build Docker Image
|
|
||||||
env:
|
|
||||||
DOCKER_REPO: litmuschaos
|
|
||||||
DOCKER_IMAGE: chaos-operator
|
|
||||||
DOCKER_TAG: ci
|
|
||||||
run: |
|
|
||||||
make build-amd64
|
|
||||||
|
|
||||||
- name: Running Go BDD Test
|
|
||||||
run: |
|
|
||||||
make test
|
|
||||||
|
|
|
@ -11,25 +11,15 @@ jobs:
|
||||||
# Install golang
|
# Install golang
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.20.0
|
go-version: 1.22
|
||||||
|
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: gofmt check
|
|
||||||
run: make gofmt-check
|
|
||||||
|
|
||||||
- name: golangci-lint
|
|
||||||
uses: reviewdog/action-golangci-lint@v2
|
|
||||||
|
|
||||||
- name: unused-package check
|
|
||||||
run: make unused-package-check
|
|
||||||
|
|
||||||
image-build:
|
image-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: tests
|
|
||||||
steps:
|
steps:
|
||||||
# Checkout to the latest commit
|
# Checkout to the latest commit
|
||||||
# On specific directory/path
|
# On specific directory/path
|
||||||
|
@ -73,44 +63,3 @@ jobs:
|
||||||
DNAME: ${{ secrets.DNAME }}
|
DNAME: ${{ secrets.DNAME }}
|
||||||
DPASS: ${{ secrets.DPASS }}
|
DPASS: ${{ secrets.DPASS }}
|
||||||
run: make push-chaos-operator
|
run: make push-chaos-operator
|
||||||
|
|
||||||
tests:
|
|
||||||
needs: pre-checks
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
# Checkout to the latest commit
|
|
||||||
# On specific directory/path
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
# Install golang
|
|
||||||
- uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: 1.20.0
|
|
||||||
|
|
||||||
#Install and configure a kind cluster
|
|
||||||
- name: Installing Prerequisites (K3S Cluster)
|
|
||||||
env:
|
|
||||||
KUBECONFIG: /etc/rancher/k3s/k3s.yaml
|
|
||||||
run: |
|
|
||||||
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.20.14-rc1+k3s1 sh -s - --docker --write-kubeconfig-mode 664
|
|
||||||
kubectl wait node --all --for condition=ready --timeout=90s
|
|
||||||
mkdir -p $HOME/.kube
|
|
||||||
cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
|
|
||||||
kubectl get nodes
|
|
||||||
|
|
||||||
- name: Dependency checks
|
|
||||||
run: |
|
|
||||||
make deps
|
|
||||||
|
|
||||||
- name: Build Docker Image
|
|
||||||
env:
|
|
||||||
DOCKER_REPO: litmuschaos
|
|
||||||
DOCKER_IMAGE: chaos-operator
|
|
||||||
DOCKER_TAG: ci
|
|
||||||
run: |
|
|
||||||
make build-amd64
|
|
||||||
|
|
||||||
- name: Running Go BDD Test
|
|
||||||
run: |
|
|
||||||
make test
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ RUN go env
|
||||||
RUN CGO_ENABLED=0 go build -buildvcs=false -o /output/chaos-operator -v ./main.go
|
RUN CGO_ENABLED=0 go build -buildvcs=false -o /output/chaos-operator -v ./main.go
|
||||||
|
|
||||||
# Packaging stage
|
# Packaging stage
|
||||||
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4
|
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
|
||||||
|
|
||||||
LABEL maintainer="LitmusChaos"
|
LABEL maintainer="LitmusChaos"
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,11 @@ package controllers
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"reflect"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/go-logr/logr"
|
"github.com/go-logr/logr"
|
||||||
litmuschaosv1alpha1 "github.com/litmuschaos/chaos-operator/api/litmuschaos/v1alpha1"
|
litmuschaosv1alpha1 "github.com/litmuschaos/chaos-operator/api/litmuschaos/v1alpha1"
|
||||||
"github.com/litmuschaos/chaos-operator/pkg/analytics"
|
"github.com/litmuschaos/chaos-operator/pkg/analytics"
|
||||||
|
@ -37,14 +42,10 @@ import (
|
||||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
"k8s.io/client-go/tools/record"
|
"k8s.io/client-go/tools/record"
|
||||||
"os"
|
|
||||||
"reflect"
|
|
||||||
ctrl "sigs.k8s.io/controller-runtime"
|
ctrl "sigs.k8s.io/controller-runtime"
|
||||||
"sigs.k8s.io/controller-runtime/pkg/client"
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
||||||
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
|
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
|
||||||
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const finalizer = "chaosengine.litmuschaos.io/finalizer"
|
const finalizer = "chaosengine.litmuschaos.io/finalizer"
|
||||||
|
@ -111,7 +112,7 @@ func (r *ChaosEngineReconciler) Reconcile(ctx context.Context, request ctrl.Requ
|
||||||
|
|
||||||
// Handling of normal execution of ChaosEngine
|
// Handling of normal execution of ChaosEngine
|
||||||
if engine.Instance.Spec.EngineState == litmuschaosv1alpha1.EngineStateActive && engine.Instance.Status.EngineStatus == litmuschaosv1alpha1.EngineStatusInitialized {
|
if engine.Instance.Spec.EngineState == litmuschaosv1alpha1.EngineStateActive && engine.Instance.Status.EngineStatus == litmuschaosv1alpha1.EngineStatusInitialized {
|
||||||
return r.reconcileForCreationAndRunning(engine, reqLogger)
|
return r.reconcileForCreationAndRunning(engine, *reqLogger)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handling Graceful completion of ChaosEngine
|
// Handling Graceful completion of ChaosEngine
|
||||||
|
@ -679,11 +680,11 @@ func updateExperimentStatusesForStop(engine *chaosTypes.EngineInfo) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func startReqLogger(request reconcile.Request) logr.Logger {
|
func startReqLogger(request reconcile.Request) *logr.Logger {
|
||||||
reqLogger := chaosTypes.Log.WithValues("Request.Namespace", request.Namespace, "Request.Name", request.Name)
|
reqLogger := chaosTypes.Log.WithValues("Request.Namespace", request.Namespace, "Request.Name", request.Name)
|
||||||
reqLogger.Info("Reconciling ChaosEngine")
|
reqLogger.Info("Reconciling ChaosEngine")
|
||||||
|
|
||||||
return reqLogger
|
return &reqLogger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *ChaosEngineReconciler) updateEngineForComplete(engine *chaosTypes.EngineInfo, isCompleted bool) (bool, error) {
|
func (r *ChaosEngineReconciler) updateEngineForComplete(engine *chaosTypes.EngineInfo, isCompleted bool) (bool, error) {
|
||||||
|
@ -826,7 +827,7 @@ func isResultCRDAvailable() (bool, error) {
|
||||||
Resource: "customresourcedefinitions",
|
Resource: "customresourcedefinitions",
|
||||||
}
|
}
|
||||||
|
|
||||||
resultList, err := (*dynamicClient).Resource(gvr).List(context.Background(), v1.ListOptions{})
|
resultList, err := dynamicClient.Resource(gvr).List(context.Background(), v1.ListOptions{})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
127
go.mod
127
go.mod
|
@ -1,117 +1,108 @@
|
||||||
module github.com/litmuschaos/chaos-operator
|
module github.com/litmuschaos/chaos-operator
|
||||||
|
|
||||||
go 1.20
|
go 1.22
|
||||||
|
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go v0.81.0 // indirect
|
github.com/go-logr/logr v1.4.2
|
||||||
github.com/go-logr/logr v1.2.3
|
github.com/google/go-cmp v0.5.9 // indirect
|
||||||
github.com/google/go-cmp v0.5.6 // indirect
|
|
||||||
github.com/jpillora/go-ogle-analytics v0.0.0-20161213085824-14b04e0594ef
|
github.com/jpillora/go-ogle-analytics v0.0.0-20161213085824-14b04e0594ef
|
||||||
github.com/litmuschaos/elves v0.0.0-20230607095010-c7119636b529
|
github.com/litmuschaos/elves v0.0.0-20230607095010-c7119636b529
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/spf13/pflag v1.0.5 // indirect
|
github.com/spf13/pflag v1.0.5 // indirect
|
||||||
golang.org/x/crypto v0.16.0 // indirect
|
golang.org/x/oauth2 v0.7.0 // indirect
|
||||||
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect
|
k8s.io/api v0.26.15
|
||||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
k8s.io/apimachinery v0.26.15
|
||||||
k8s.io/api v0.26.0
|
|
||||||
k8s.io/apimachinery v0.26.0
|
|
||||||
k8s.io/client-go v12.0.0+incompatible
|
k8s.io/client-go v12.0.0+incompatible
|
||||||
sigs.k8s.io/controller-runtime v0.10.0
|
sigs.k8s.io/controller-runtime v0.14.6
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
|
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
|
||||||
github.com/google/martian v2.1.0+incompatible
|
github.com/google/martian v2.1.0+incompatible
|
||||||
github.com/onsi/ginkgo v1.16.4
|
github.com/onsi/ginkgo v1.16.5
|
||||||
github.com/onsi/gomega v1.15.0
|
github.com/onsi/gomega v1.24.2
|
||||||
github.com/operator-framework/operator-sdk v0.19.0
|
github.com/stretchr/testify v1.8.2
|
||||||
github.com/stretchr/testify v1.7.0
|
|
||||||
k8s.io/klog v1.0.0
|
k8s.io/klog v1.0.0
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
||||||
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
|
|
||||||
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
|
|
||||||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
||||||
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
|
||||||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
|
||||||
github.com/beorn7/perks v1.0.1 // indirect
|
github.com/beorn7/perks v1.0.1 // indirect
|
||||||
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
|
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
|
||||||
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
|
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
|
||||||
github.com/fsnotify/fsnotify v1.4.9 // indirect
|
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
|
||||||
github.com/go-logr/zapr v0.4.0 // indirect
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
||||||
|
github.com/go-logr/zapr v1.2.3 // indirect
|
||||||
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
||||||
|
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
||||||
|
github.com/go-openapi/swag v0.19.14 // indirect
|
||||||
github.com/gogo/protobuf v1.3.2 // indirect
|
github.com/gogo/protobuf v1.3.2 // indirect
|
||||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
||||||
github.com/golang/protobuf v1.5.2 // indirect
|
github.com/golang/protobuf v1.5.4 // indirect
|
||||||
|
github.com/google/gnostic v0.5.7-v3refs // indirect
|
||||||
github.com/google/gofuzz v1.1.0 // indirect
|
github.com/google/gofuzz v1.1.0 // indirect
|
||||||
github.com/google/uuid v1.1.2 // indirect
|
github.com/google/uuid v1.3.0 // indirect
|
||||||
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
||||||
github.com/hashicorp/golang-lru v0.5.3 // indirect
|
|
||||||
github.com/imdario/mergo v0.3.12 // indirect
|
github.com/imdario/mergo v0.3.12 // indirect
|
||||||
|
github.com/josharian/intern v1.0.0 // indirect
|
||||||
github.com/json-iterator/go v1.1.12 // indirect
|
github.com/json-iterator/go v1.1.12 // indirect
|
||||||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
github.com/mailru/easyjson v0.7.6 // indirect
|
||||||
|
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
|
||||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
||||||
github.com/modern-go/reflect2 v1.0.2 // indirect
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
||||||
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
||||||
github.com/nxadm/tail v1.4.8 // indirect
|
github.com/nxadm/tail v1.4.8 // indirect
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
github.com/prometheus/client_golang v1.12.1 // indirect
|
github.com/prometheus/client_golang v1.14.0 // indirect
|
||||||
github.com/prometheus/client_model v0.2.0 // indirect
|
github.com/prometheus/client_model v0.3.0 // indirect
|
||||||
github.com/prometheus/common v0.32.1 // indirect
|
github.com/prometheus/common v0.37.0 // indirect
|
||||||
github.com/prometheus/procfs v0.7.3 // indirect
|
github.com/prometheus/procfs v0.8.0 // indirect
|
||||||
go.uber.org/atomic v1.7.0 // indirect
|
go.uber.org/atomic v1.7.0 // indirect
|
||||||
go.uber.org/multierr v1.6.0 // indirect
|
go.uber.org/multierr v1.6.0 // indirect
|
||||||
go.uber.org/zap v1.19.0 // indirect
|
go.uber.org/zap v1.24.0 // indirect
|
||||||
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
|
|
||||||
golang.org/x/net v0.19.0 // indirect
|
golang.org/x/net v0.19.0 // indirect
|
||||||
golang.org/x/sys v0.15.0 // indirect
|
golang.org/x/sys v0.15.0 // indirect
|
||||||
golang.org/x/term v0.15.0 // indirect
|
golang.org/x/term v0.15.0 // indirect
|
||||||
golang.org/x/text v0.14.0 // indirect
|
golang.org/x/text v0.14.0 // indirect
|
||||||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
|
golang.org/x/time v0.3.0 // indirect
|
||||||
golang.org/x/tools v0.16.1 // indirect
|
|
||||||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
|
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
|
||||||
google.golang.org/appengine v1.6.7 // indirect
|
google.golang.org/appengine v1.6.7 // indirect
|
||||||
google.golang.org/protobuf v1.26.0 // indirect
|
google.golang.org/protobuf v1.33.0 // indirect
|
||||||
gopkg.in/inf.v0 v0.9.1 // indirect
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
||||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
||||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
k8s.io/apiextensions-apiserver v0.22.1 // indirect
|
k8s.io/apiextensions-apiserver v0.26.1 // indirect
|
||||||
k8s.io/component-base v0.22.2 // indirect
|
k8s.io/component-base v0.26.15 // indirect
|
||||||
k8s.io/klog/v2 v2.80.1 // indirect
|
k8s.io/klog/v2 v2.80.1 // indirect
|
||||||
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect
|
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
|
||||||
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
|
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
|
||||||
|
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
|
||||||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
|
||||||
sigs.k8s.io/yaml v1.2.0 // indirect
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pinned to kubernetes-1.21.2
|
// Pinned to kubernetes-1.26
|
||||||
replace (
|
replace (
|
||||||
github.com/go-logr/logr => github.com/go-logr/logr v0.4.0
|
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.14.6
|
||||||
k8s.io/api => k8s.io/api v0.21.2
|
github.com/go-logr/logr => github.com/go-logr/logr v1.4.2
|
||||||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.2
|
k8s.io/api => k8s.io/api v0.26.15
|
||||||
k8s.io/apimachinery => k8s.io/apimachinery v0.21.2
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.26.15
|
||||||
k8s.io/apiserver => k8s.io/apiserver v0.21.2
|
k8s.io/apimachinery => k8s.io/apimachinery v0.26.15
|
||||||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.21.2
|
k8s.io/client-go => k8s.io/client-go v0.26.15
|
||||||
k8s.io/client-go => k8s.io/client-go v0.21.2
|
k8s.io/cloud-provider => k8s.io/cloud-provider v0.26.15
|
||||||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.21.2
|
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.26.15
|
||||||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.21.2
|
k8s.io/component-base => k8s.io/component-base v0.26.15
|
||||||
k8s.io/code-generator => k8s.io/code-generator v0.21.2
|
k8s.io/cri-api => k8s.io/cri-api v0.26.15
|
||||||
k8s.io/component-base => k8s.io/component-base v0.21.2
|
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.26.15
|
||||||
k8s.io/cri-api => k8s.io/cri-api v0.21.2
|
k8s.io/klog/v2 => k8s.io/klog/v2 v2.80.1
|
||||||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.21.2
|
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.26.15
|
||||||
k8s.io/klog/v2 => k8s.io/klog/v2 v2.9.0
|
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.26.15
|
||||||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.21.2
|
k8s.io/kube-proxy => k8s.io/kube-proxy v0.26.15
|
||||||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.21.2
|
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.26.15
|
||||||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.21.2
|
k8s.io/kubelet => k8s.io/kubelet v0.26.15
|
||||||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.21.2
|
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.26.15
|
||||||
k8s.io/kubectl => k8s.io/kubectl v0.21.2
|
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.26.15
|
||||||
k8s.io/kubelet => k8s.io/kubelet v0.21.2
|
|
||||||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.21.2
|
|
||||||
k8s.io/metrics => k8s.io/metrics v0.21.2
|
|
||||||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.21.2
|
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
|
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
|
||||||
|
|
11
main.go
11
main.go
|
@ -19,12 +19,13 @@ package main
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/litmuschaos/chaos-operator/pkg/analytics"
|
|
||||||
"github.com/operator-framework/operator-sdk/pkg/k8sutil"
|
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/litmuschaos/chaos-operator/pkg/analytics"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
|
||||||
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
|
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
|
||||||
// to ensure that exec-entrypoint and run can make use of them.
|
// to ensure that exec-entrypoint and run can make use of them.
|
||||||
_ "k8s.io/client-go/plugin/pkg/client/auth"
|
_ "k8s.io/client-go/plugin/pkg/client/auth"
|
||||||
|
@ -71,9 +72,9 @@ func main() {
|
||||||
|
|
||||||
printVersion()
|
printVersion()
|
||||||
|
|
||||||
namespace, err := k8sutil.GetWatchNamespace()
|
namespace, found := os.LookupEnv("WATCH_NAMESPACE")
|
||||||
if err != nil {
|
if !found {
|
||||||
setupLog.Error(err, "failed to get watch namespace")
|
setupLog.Error(errors.New("WATCH_NAMESPACE env is not set"), "failed to get watch namespace")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// CreateClientSet returns a Dynamic Kubernetes ClientSet
|
// CreateClientSet returns a Dynamic Kubernetes ClientSet
|
||||||
func CreateClientSet() (*dynamic.Interface, error) {
|
func CreateClientSet() (dynamic.Interface, error) {
|
||||||
restConfig, err := config.GetConfig()
|
restConfig, err := config.GetConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -15,5 +15,5 @@ func CreateClientSet() (*dynamic.Interface, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return &clientSet, nil
|
return clientSet, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue