-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kubectl and kustomize install artifacts for 1.3.3 (#668)
Signed-off-by: Leo Christy Jesuraj <leojc@ca.ibm.com>
- Loading branch information
Showing
40 changed files
with
18,393 additions
and
0 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,10 @@ | ||
|
||
== Installing WebSphere Liberty Operator with kubectl | ||
|
||
The WebSphere Liberty Operator can be installed using Kubernetes command-line interface (CLI) (kubectl) to: | ||
|
||
* watch own namespace | ||
* watch another namespace | ||
* watch all namespaces in the cluster | ||
|
||
Follow the instructions in the link:++https://ibm.biz/wlo-install-kubectl++[documentation]. |
8,135 changes: 8,135 additions & 0 deletions
8,135
deploy/releases/1.3.3/kubectl/websphereliberty-app-crd.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
376 changes: 376 additions & 0 deletions
376
deploy/releases/1.3.3/kubectl/websphereliberty-app-operator.yaml
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,376 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
name: wlo-controller-manager | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
name: wlo-leader-election-role | ||
rules: | ||
- apiGroups: | ||
- "" | ||
- coordination.k8s.io | ||
resources: | ||
- configmaps | ||
- leases | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
name: wlo-manager-role | ||
rules: | ||
- apiGroups: | ||
- apps | ||
resources: | ||
- deployments | ||
- statefulsets | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- apps | ||
resources: | ||
- deployments/finalizers | ||
- statefulsets | ||
verbs: | ||
- update | ||
- apiGroups: | ||
- autoscaling | ||
resources: | ||
- horizontalpodautoscalers | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- batch | ||
resources: | ||
- jobs | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cert-manager.io | ||
resources: | ||
- certificates | ||
- issuers | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
- persistentvolumeclaims | ||
- secrets | ||
- serviceaccounts | ||
- services | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- pods | ||
- pods/exec | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- image.openshift.io | ||
resources: | ||
- imagestreams | ||
- imagestreamtags | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- liberty.websphere.ibm.com | ||
resources: | ||
- webspherelibertyapplications | ||
- webspherelibertyapplications/finalizers | ||
- webspherelibertyapplications/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- liberty.websphere.ibm.com | ||
resources: | ||
- webspherelibertydumps | ||
- webspherelibertydumps/finalizers | ||
- webspherelibertydumps/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- liberty.websphere.ibm.com | ||
resources: | ||
- webspherelibertytraces | ||
- webspherelibertytraces/finalizers | ||
- webspherelibertytraces/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- monitoring.coreos.com | ||
resources: | ||
- servicemonitors | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- networking.k8s.io | ||
resources: | ||
- ingresses | ||
- networkpolicies | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- rbac.authorization.k8s.io | ||
resources: | ||
- rolebindings | ||
- roles | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- route.openshift.io | ||
resources: | ||
- routes | ||
- routes/custom-host | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- security.openshift.io | ||
resourceNames: | ||
- restricted | ||
resources: | ||
- securitycontextconstraints | ||
verbs: | ||
- use | ||
- apiGroups: | ||
- serving.knative.dev | ||
resources: | ||
- services | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- update | ||
- watch | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
name: wlo-leader-election-rolebinding | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: wlo-leader-election-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: wlo-controller-manager | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
name: wlo-manager-rolebinding | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: wlo-manager-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: wlo-controller-manager | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
control-plane: controller-manager | ||
name: wlo-controller-manager | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
control-plane: controller-manager | ||
template: | ||
metadata: | ||
annotations: | ||
kubectl.kubernetes.io/default-container: manager | ||
productChargedContainers: ALL | ||
productID: cb1747ecb831410f88006195f024183f | ||
productMetric: FREE | ||
productName: WebSphere Liberty Operator | ||
labels: | ||
app.kubernetes.io/instance: websphere-liberty-operator | ||
app.kubernetes.io/name: websphere-liberty-operator | ||
control-plane: controller-manager | ||
spec: | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: kubernetes.io/arch | ||
operator: In | ||
values: | ||
- amd64 | ||
- ppc64le | ||
- s390x | ||
containers: | ||
- args: | ||
- --health-probe-bind-address=:8081 | ||
- --metrics-bind-address=127.0.0.1:8080 | ||
- --enable-leader-election | ||
command: | ||
- /manager | ||
env: | ||
- name: OPERATOR_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: WATCH_NAMESPACE | ||
value: WEBSPHERE_LIBERTY_WATCH_NAMESPACE | ||
- name: RELATED_IMAGE_LIBERTY_SAMPLE_APP | ||
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91 | ||
- name: RELATED_IMAGE_WEBSPHERE_LIBERTY_OPERATOR | ||
value: icr.io/cpopen/websphere-liberty-operator@sha256:655eeead9f31a8e2980642bd0e54d6a46446051d0333a9ab46f0cc0f2ee43283 | ||
image: icr.io/cpopen/websphere-liberty-operator@sha256:655eeead9f31a8e2980642bd0e54d6a46446051d0333a9ab46f0cc0f2ee43283 | ||
livenessProbe: | ||
failureThreshold: 3 | ||
httpGet: | ||
path: /healthz | ||
port: 8081 | ||
scheme: HTTP | ||
initialDelaySeconds: 90 | ||
periodSeconds: 30 | ||
successThreshold: 1 | ||
timeoutSeconds: 10 | ||
name: manager | ||
readinessProbe: | ||
failureThreshold: 3 | ||
httpGet: | ||
path: /readyz | ||
port: 8081 | ||
scheme: HTTP | ||
initialDelaySeconds: 20 | ||
periodSeconds: 30 | ||
successThreshold: 1 | ||
timeoutSeconds: 10 | ||
resources: | ||
limits: | ||
cpu: 400m | ||
memory: 1Gi | ||
requests: | ||
cpu: 200m | ||
memory: 128Mi | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
capabilities: | ||
drop: | ||
- ALL | ||
privileged: false | ||
readOnlyRootFilesystem: true | ||
runAsNonRoot: true | ||
hostIPC: false | ||
hostNetwork: false | ||
hostPID: false | ||
securityContext: | ||
runAsNonRoot: true | ||
serviceAccountName: wlo-controller-manager | ||
terminationGracePeriodSeconds: 10 |
Oops, something went wrong.