Skip to content

Commit ad5095f

Browse files
authored
chore(3.0.0-beta3): adding release manifests for 3.0.0-beta3 (#3887)
* chore(3.0.0-beta3): adding release manifests for 3.0.0-beta3 Signed-off-by: Shubham Chaudhary <[email protected]> * updating readme for 3.0.0-beta3 installation Signed-off-by: Shubham Chaudhary <[email protected]> * adding deletecollection permissions Signed-off-by: Shubham Chaudhary <[email protected]> Signed-off-by: Shubham Chaudhary <[email protected]>
1 parent d5dbf75 commit ad5095f

9 files changed

+6310
-23
lines changed

litmus-portal/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ ChaosCenter provides console and UI experience for managing, monitoring, and eve
2222

2323
#### Applying k8s manifest
2424

25-
> Litmus-3.0-beta1 Cluster Scope manifest
25+
> Litmus-3.0.0-beta3 Cluster Scope manifest
2626
2727
```bash
28-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/mkdocs/docs/3.0-beta1/litmus-3.0-beta1.yaml
28+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/3.0.0-beta3/mkdocs/docs/3.0.0-beta3/litmus-3.0.0-beta3.yaml
2929
```
3030

3131
Or
3232

33-
> Litmus-3.0-beta1 Namespaced Scope manifest.
33+
> Litmus-3.0.0-beta3 Namespaced Scope manifest.
3434
3535
```bash
3636
#Create a namespace eg: litmus
3737
kubectl create ns litmus
3838
#Install CRDs, if SELF_AGENT env is set to TRUE
39-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/mkdocs/docs/3.0-beta1/litmus-portal-crds-3.0-beta1.yml
39+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/3.0.0-beta3/mkdocs/docs/3.0.0-beta3/litmus-portal-crds-3.0.0-beta3.yml
4040
#Install ChaosCenter
41-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/mkdocs/docs/3.0-beta1/litmus-namespaced-3.0-beta1.yaml -n litmus
41+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/3.0.0-beta3/mkdocs/docs/3.0.0-beta3/litmus-namespaced-3.0.0-beta3.yaml -n litmus
4242
```
4343

4444
Or
4545

4646
> Master (Latest) Cluster scope. Install in litmus namespace by default.
4747
4848
```bash
49-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/litmus-portal/manifests/cluster-k8s-manifest.yml
49+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/cluster-k8s-manifest.yml
5050
```
5151

5252
Or
@@ -57,9 +57,9 @@ Or
5757
#Create a namespace eg: litmus
5858
kubectl create ns litmus
5959
#Install CRDs, if SELF_AGENT env is set to TRUE
60-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/litmus-portal/manifests/litmus-portal-crds.yml
60+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
6161
#Install ChaosCenter
62-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/dev-3.x/litmus-portal/manifests/namespace-k8s-manifest.yml -n litmus
62+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/namespace-k8s-manifest.yml -n litmus
6363
```
6464

6565
#### Configuration Options for Cluster scope.

litmus-portal/manifests/cluster-k8s-manifest.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ spec:
583583
spec:
584584
initContainers:
585585
- name: wait-for-mongodb
586-
image: litmuschaos/curl:3.0.0-beta2
586+
image: litmuschaos/curl:3.0.0-beta3
587587
command: ["/bin/sh", "-c"]
588588
args:
589589
[
@@ -642,11 +642,11 @@ spec:
642642
- name: ARGO_WORKFLOW_EXECUTOR_IMAGE
643643
value: "litmuschaos/argoexec:v3.3.1"
644644
- name: LITMUS_CHAOS_OPERATOR_IMAGE
645-
value: "litmuschaos/chaos-operator:3.0.0-beta2"
645+
value: "litmuschaos/chaos-operator:3.0.0-beta3"
646646
- name: LITMUS_CHAOS_RUNNER_IMAGE
647-
value: "litmuschaos/chaos-runner:3.0.0-beta2"
647+
value: "litmuschaos/chaos-runner:3.0.0-beta3"
648648
- name: LITMUS_CHAOS_EXPORTER_IMAGE
649-
value: "litmuschaos/chaos-exporter:3.0.0-beta2"
649+
value: "litmuschaos/chaos-exporter:3.0.0-beta3"
650650
- name: SERVER_SERVICE_NAME
651651
value: "litmusportal-server-service"
652652
- name: AGENT_DEPLOYMENTS
@@ -674,7 +674,7 @@ spec:
674674
- name: LITMUS_AUTH_GRPC_PORT
675675
value: ":3030"
676676
- name: WORKFLOW_HELPER_IMAGE_VERSION
677-
value: "3.0.0-beta2"
677+
value: "3.0.0-beta3"
678678
- name: REMOTE_HUB_MAX_SIZE
679679
value: "5000000"
680680
ports:
@@ -729,7 +729,7 @@ spec:
729729
automountServiceAccountToken: false
730730
initContainers:
731731
- name: wait-for-mongodb
732-
image: litmuschaos/curl:3.0.0-beta2
732+
image: litmuschaos/curl:3.0.0-beta3
733733
command: ["/bin/sh", "-c"]
734734
args:
735735
[

litmus-portal/manifests/litmus-portal-crds.yml

+212-3
Original file line numberDiff line numberDiff line change
@@ -670,9 +670,6 @@ spec:
670670
#oneOf:
671671
# - pattern: '^delete$'
672672
# - pattern: '^retain$'
673-
annotationCheck:
674-
type: string
675-
pattern: ^(true|false)$
676673
defaultHealthCheck:
677674
type: string
678675
pattern: ^(true|false)$
@@ -686,6 +683,44 @@ spec:
686683
type: string
687684
appns:
688685
type: string
686+
selectors:
687+
type: object
688+
properties:
689+
pods:
690+
items:
691+
properties:
692+
names:
693+
type: string
694+
namespace:
695+
type: string
696+
required:
697+
- names
698+
- namespace
699+
type: object
700+
type: array
701+
workloads:
702+
items:
703+
properties:
704+
kind:
705+
type: string
706+
pattern: ^(^$|deployment|statefulset|daemonset|deploymentconfig|rollout)$
707+
labels:
708+
type: string
709+
names:
710+
type: string
711+
namespace:
712+
type: string
713+
oneOf:
714+
- required: [ names ]
715+
- required: [ labels ]
716+
required:
717+
- kind
718+
- namespace
719+
type: object
720+
type: array
721+
oneOf:
722+
- required: [ pods ]
723+
- required: [ workloads ]
689724
auxiliaryAppInfo:
690725
type: string
691726
engineState:
@@ -698,6 +733,180 @@ spec:
698733
components:
699734
type: object
700735
properties:
736+
sidecar:
737+
type: array
738+
items:
739+
type: object
740+
properties:
741+
env:
742+
description: ENV contains ENV passed to the sidecar container
743+
items:
744+
description: EnvVar represents an environment variable
745+
present in a Container.
746+
properties:
747+
name:
748+
description: Name of the environment variable. Must
749+
be a C_IDENTIFIER.
750+
type: string
751+
value:
752+
description: 'Variable references $(VAR_NAME) are
753+
expanded using the previous defined environment
754+
variables in the container and any service environment
755+
variables. If a variable cannot be resolved, the
756+
reference in the input string will be unchanged.
757+
The $(VAR_NAME) syntax can be escaped with a double
758+
$$, ie: $$(VAR_NAME). Escaped references will never
759+
be expanded, regardless of whether the variable
760+
exists or not. Defaults to "".'
761+
type: string
762+
valueFrom:
763+
description: Source for the environment variable's
764+
value. Cannot be used if value is not empty.
765+
properties:
766+
configMapKeyRef:
767+
description: Selects a key of a ConfigMap.
768+
properties:
769+
key:
770+
description: The key to select.
771+
type: string
772+
name:
773+
description: 'Name of the referent. More info:
774+
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
775+
TODO: Add other useful fields. apiVersion,
776+
kind, uid?'
777+
type: string
778+
optional:
779+
description: Specify whether the ConfigMap
780+
or its key must be defined
781+
type: boolean
782+
required:
783+
- key
784+
type: object
785+
fieldRef:
786+
description: 'Selects a field of the pod: supports
787+
metadata.name, metadata.namespace, `metadata.labels[''<KEY>'']`,
788+
`metadata.annotations[''<KEY>'']`, spec.nodeName,
789+
spec.serviceAccountName, status.hostIP, status.podIP,
790+
status.podIPs.'
791+
properties:
792+
apiVersion:
793+
description: Version of the schema the FieldPath
794+
is written in terms of, defaults to "v1".
795+
type: string
796+
fieldPath:
797+
description: Path of the field to select in
798+
the specified API version.
799+
type: string
800+
required:
801+
- fieldPath
802+
type: object
803+
resourceFieldRef:
804+
description: 'Selects a resource of the container:
805+
only resources limits and requests (limits.cpu,
806+
limits.memory, limits.ephemeral-storage, requests.cpu,
807+
requests.memory and requests.ephemeral-storage)
808+
are currently supported.'
809+
properties:
810+
containerName:
811+
description: 'Container name: required for
812+
volumes, optional for env vars'
813+
type: string
814+
divisor:
815+
anyOf:
816+
- type: integer
817+
- type: string
818+
description: Specifies the output format of
819+
the exposed resources, defaults to "1"
820+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
821+
x-kubernetes-int-or-string: true
822+
resource:
823+
description: 'Required: resource to select'
824+
type: string
825+
required:
826+
- resource
827+
type: object
828+
secretKeyRef:
829+
description: Selects a key of a secret in the
830+
pod's namespace
831+
properties:
832+
key:
833+
description: The key of the secret to select
834+
from. Must be a valid secret key.
835+
type: string
836+
name:
837+
description: 'Name of the referent. More info:
838+
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
839+
TODO: Add other useful fields. apiVersion,
840+
kind, uid?'
841+
type: string
842+
optional:
843+
description: Specify whether the Secret or
844+
its key must be defined
845+
type: boolean
846+
required:
847+
- key
848+
type: object
849+
type: object
850+
required:
851+
- name
852+
type: object
853+
type: array
854+
envFrom:
855+
description: EnvFrom for the sidecar container
856+
items:
857+
description: EnvFromSource represents the source of a
858+
set of ConfigMaps
859+
properties:
860+
configMapRef:
861+
description: The ConfigMap to select from
862+
properties:
863+
name:
864+
description: 'Name of the referent. More info:
865+
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
866+
TODO: Add other useful fields. apiVersion, kind,
867+
uid?'
868+
type: string
869+
optional:
870+
description: Specify whether the ConfigMap must
871+
be defined
872+
type: boolean
873+
type: object
874+
prefix:
875+
description: An optional identifier to prepend to
876+
each key in the ConfigMap. Must be a C_IDENTIFIER.
877+
type: string
878+
secretRef:
879+
description: The Secret to select from
880+
properties:
881+
name:
882+
description: 'Name of the referent. More info:
883+
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
884+
TODO: Add other useful fields. apiVersion, kind,
885+
uid?'
886+
type: string
887+
optional:
888+
description: Specify whether the Secret must be
889+
defined
890+
type: boolean
891+
type: object
892+
type: object
893+
type: array
894+
image:
895+
type: string
896+
imagePullPolicy:
897+
type: string
898+
secrets:
899+
items:
900+
properties:
901+
mountPath:
902+
type: string
903+
name:
904+
type: string
905+
required:
906+
- mountPath
907+
- name
908+
type: object
909+
type: array
701910
runner:
702911
x-kubernetes-preserve-unknown-fields: true
703912
type: object

litmus-portal/manifests/namespace-k8s-manifest.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ spec:
555555
spec:
556556
initContainers:
557557
- name: wait-for-mongodb
558-
image: litmuschaos/curl:3.0.0-beta2
558+
image: litmuschaos/curl:3.0.0-beta3
559559
command: ["/bin/sh", "-c"]
560560
args:
561561
[
@@ -628,11 +628,11 @@ spec:
628628
- name: ARGO_WORKFLOW_EXECUTOR_IMAGE
629629
value: "litmuschaos/argoexec:v3.3.1"
630630
- name: LITMUS_CHAOS_OPERATOR_IMAGE
631-
value: "litmuschaos/chaos-operator:3.0.0-beta2"
631+
value: "litmuschaos/chaos-operator:3.0.0-beta3"
632632
- name: LITMUS_CHAOS_RUNNER_IMAGE
633-
value: "litmuschaos/chaos-runner:3.0.0-beta2"
633+
value: "litmuschaos/chaos-runner:3.0.0-beta3"
634634
- name: LITMUS_CHAOS_EXPORTER_IMAGE
635-
value: "litmuschaos/chaos-exporter:3.0.0-beta2"
635+
value: "litmuschaos/chaos-exporter:3.0.0-beta3"
636636
- name: CONTAINER_RUNTIME_EXECUTOR
637637
value: "k8sapi"
638638
- name: HUB_BRANCH_NAME
@@ -642,7 +642,7 @@ spec:
642642
- name: LITMUS_AUTH_GRPC_PORT
643643
value: ":3030"
644644
- name: WORKFLOW_HELPER_IMAGE_VERSION
645-
value: "3.0.0-beta2"
645+
value: "3.0.0-beta3"
646646
- name: REMOTE_HUB_MAX_SIZE
647647
value: "5000000"
648648
- name: INGRESS
@@ -699,7 +699,7 @@ spec:
699699
automountServiceAccountToken: false
700700
initContainers:
701701
- name: wait-for-mongodb
702-
image: litmuschaos/curl:3.0.0-beta2
702+
image: litmuschaos/curl:3.0.0-beta3
703703
command: ["/bin/sh", "-c"]
704704
args:
705705
[

0 commit comments

Comments
 (0)