-
-
Save ossiemarks/d5db4af462ff04a8b462c78ac03403f3 to your computer and use it in GitHub Desktop.
Revisions
-
rafaeltuelho revised this gist
May 10, 2019 . 1 changed file with 24 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,6 +20,30 @@ RUN set -x && \ 2 yum clean all ``` ### Docker push to ocp internal registry ``` 01. oc extract -n default secrets/registry-certificates --keys=registry.crt 02. REGISTRY=$(oc get routes -n default docker-registry -o jsonpath='{.spec.host}') 03. mkdir -p /etc/containers/certs.d/${REGISTRY} 04. mv registry.crt /etc/containers/certs.d/${REGISTRY}/ 05. oc adm new-project openshift-pipeline 06. oc create -n openshift-pipeline serviceaccount pipeline 07. SA_SECRET=$(oc get secret -n openshift-pipeline | grep pipeline-token | cut -d ' ' -f 1 | head -n 1) 08. SA_PASSWORD=$(oc get secret -n openshift-pipeline ${SA_SECRET} -o jsonpath='{.data.token}' | base64 -d) 09. oc adm policy add-cluster-role-to-user system:image-builder system:serviceaccount:openshift-pipeline:pipeline 10. docker login ${REGISTRY} -u unused -p ${SA_PASSWORD} 11. docker pull docker.io/library/hello-world 12. docker tag docker.io/library/hello-world ${REGISTRY}/openshift-pipeline/helloworld 13. docker push ${REGISTRY}/openshift-pipeline/helloworld 14. oc new-project demo-project 15. oc policy add-role-to-user system:image-puller system:serviceaccount:demo-project:default -n openshift-pipeline 16. oc new-app --image-stream=openshift-pipeline/helloworld:latest ``` ### Creates a service to point to an external service addr (DNS or IP) ``` -
rafaeltuelho revised this gist
Nov 29, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ $ oc describe AppliedClusterResourceQuota ``` ### Install pkgs using yum in a Dockerfile ``` # Install Runtime Environment -
rafaeltuelho revised this gist
Oct 9, 2018 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,10 @@ # My Openshift Cheatsheet ### Examine the **cluster** quota defined for the environment: ``` $ oc describe AppliedClusterResourceQuota ``` ### Install paks using yum in a Dockerfile -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 17 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,20 @@ # My Openshift Cheatsheet ### Install paks using yum in a Dockerfile ``` # Install Runtime Environment RUN set -x && \ 2 yum clean all && \ REPOLIST=rhel-7-server-rpms,rhel-7-server-optional-rpms,rhel-7-server-thirdparty-oracle-java-rpms \ INSTALL_PKGS="tar java-1.8.0-oracle-devel" && \ yum -y update-minimal --disablerepo "*" --enablerepo ${REPOLIST} --setopt=tsflags=nodocs \ --security --sec-severity=Important --sec-severity=Critical && \ yum -y install --disablerepo "*" --enablerepo ${REPOLIST} --setopt=tsflags=nodocs ${INSTALL_PKGS} && \ yum clean all ``` ### Creates a service to point to an external service addr (DNS or IP) ``` @@ -9,8 +23,11 @@ oc create service externalname myservice \ ``` > A typical service creates endpoint resources dynamically, based on the selector attribute of the service. The oc status and oc get all commands do not display these resources. You can use the oc get endpoints command to display them. > If you use the oc create service externalname --external-name command to create a service, the command also creates an endpoint resource that points to the host name or IP address given as argument. > If you do not use the --external-name option, it does not create an endpoint resource. In this case, you need to use the oc create -f command and a resource definition file to explicitly create the endpoint resources. > If you create an endpoint from a file, you can define multiple IP addresses for the same external service, and rely on the OpenShift service load-balancing features. In this scenario, OpenShift does not add or remove addresses to account for the availability of each instance. An external application needs to update the list of IP addresses in the endpoint resource. ### Patching a DeploymentConfig from the CLI -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 3 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -9,12 +9,9 @@ oc create service externalname myservice \ ``` > A typical service creates endpoint resources dynamically, based on the selector attribute of the service. The oc status and oc get all commands do not display these resources. You can use the oc get endpoints command to display them. > If you use the oc create service externalname --external-name command to create a service, the command also creates an endpoint resource that points to the host name or IP address given as argument. > If you do not use the --external-name option, it does not create an endpoint resource. In this case, you need to use the oc create -f command and a resource definition file to explicitly create the endpoint resources. > If you create an endpoint from a file, you can define multiple IP addresses for the same external service, and rely on the OpenShift service load-balancing features. In this scenario, OpenShift does not add or remove addresses to account for the availability of each instance. An external application needs to update the list of IP addresses in the endpoint resource. ### Patching a DeploymentConfig from the CLI -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 15 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,21 @@ # My Openshift Cheatsheet ### Creates a service to point to an external service addr (DNS or IP) ``` oc create service externalname myservice \ --external-name myhost.example.com ``` > A typical service creates endpoint resources dynamically, based on the selector attribute of the service. The oc status and oc get all commands do not display these resources. You can use the oc get endpoints command to display them. If you use the oc create service externalname --external-name command to create a service, the command also creates an endpoint resource that points to the host name or IP address given as argument. If you do not use the --external-name option, it does not create an endpoint resource. In this case, you need to use the oc create -f command and a resource definition file to explicitly create the endpoint resources. If you create an endpoint from a file, you can define multiple IP addresses for the same external service, and rely on the OpenShift service load-balancing features. In this scenario, OpenShift does not add or remove addresses to account for the availability of each instance. An external application needs to update the list of IP addresses in the endpoint resource. ### Patching a DeploymentConfig from the CLI * this example removes an config attribute using JSON path -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,20 @@ # My Openshift Cheatsheet ### Patching a DeploymentConfig from the CLI * this example removes an config attribute using JSON path ``` oc patch dc/mysql --type=json \ -p='[{"op":"remove", "path": "/spec/strategy/rollingParams"}]' ``` * this example cnhage an existing attribute value using JSON format ``` oc patch dc/mysql --patch \ '{"spec":{"strategy":{"type":"Recreate"}}}' ``` ### Creating a Custom template by exporting existing resources > The oc export command can create a resource definition file by using the --as-template option. Without the --as-template option, the oc export command only generates a list of resources. With the --as-template option, the oc export command wraps the list inside a template resource definition. After you export a set of resources to a template file, you can add annotations and parameters as desired. -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 7 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -134,13 +134,19 @@ oc secrets new-basicauth gogs-basicauth --username=<your gogs login> --password= oc set build-secret --source bc/tasks gogs-basicauth ``` ### Adding a volume in a given DeploymentConfig ``` oc set volume dc/myAppDC --add --overwrite --name.... ``` ### Create a configmap file and mount as a volume on DC ``` oc create configmap myconfigfile --from-file=./configfile.txt oc set volumes dc/printenv --add --overwrite=true --name=config-volume --mount-path=/data -t configmap --configmap-name=myconfigfile ``` ### create a secret via CLI ``` oc create secret generic mysec --from-literal=app_user=superuser --from-literal=app_password=topsecret oc env dc/printenv --from=secret/mysec -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -30,6 +30,12 @@ oc set triggers dc/datagrid-app --from-image=customdg:1.0 -c datagrid-app ``` #### List only paramaters of a given template file definition ``` oc process -f mytemplate.yaml --parameters ``` ### Copy file content from a specific image to local file system ``` -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -12,6 +12,10 @@ oc export is,bc,dc,svc,route --as-template > mytemplate.yml > Depending on your needs, add more resource types to the previous command. For example, add secret before bc and dc. It is safe to add pvc to the end of the list of resource types because a deployment waits for persistent volume claim to bind. > The oc export command does not generate resource definitions that are ready to use in a template. These resource definitions contain runtime information that is not needed in a template, and some of it could prevent the template from working at all. Examples of runtime information are attributes such as status, creationTimeStamp, image, and tags, besides most annotations that start with the openshift.io/generated-by prefix. > Some resource types, such as secrets, require special handling. It is not possible to initialize key values inside the data attribute using template parameters. The data attribute from a secret resource needs to be replaced by the stringData attribute and all key values need to be unencoded. ### Logging Aggregation throubleshooting * https://access.redhat.com/articles/3136551 -
rafaeltuelho revised this gist
Sep 20, 2018 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,17 @@ # My Openshift Cheatsheet ### Creating a Custom template by exporting existing resources > The oc export command can create a resource definition file by using the --as-template option. Without the --as-template option, the oc export command only generates a list of resources. With the --as-template option, the oc export command wraps the list inside a template resource definition. After you export a set of resources to a template file, you can add annotations and parameters as desired. > The order in which you list the resources in the oc export command is important. You need to export dependent resources first, and then the resources that depend on them. For example, you need to export image streams before the build configurations and deployment configurations that reference those image streams. ``` oc export is,bc,dc,svc,route --as-template > mytemplate.yml ``` > Depending on your needs, add more resource types to the previous command. For example, add secret before bc and dc. It is safe to add pvc to the end of the list of resource types because a deployment waits for persistent volume claim to bind. ### Logging Aggregation throubleshooting * https://access.redhat.com/articles/3136551 -
rafaeltuelho revised this gist
Sep 6, 2018 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -87,11 +87,12 @@ mvn deploy -DskipTests=true \ -DaltDeploymentRepository= nexus::default::http://nexus3.nexus.svc.cluster.local:8081/repository/releases ``` ### to update a DeploymentConfig in order to change the Docker Image used by a specific container ``` oc project <project> oc get is # creates an ImageStream from a Remote Docker Registry image oc import-image <image name> --from=docker.io/<imagerepo>/<imagename> --all --confirm oc get istag -
rafaeltuelho revised this gist
Aug 21, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,8 @@ # My Openshift Cheatsheet ### Logging Aggregation throubleshooting * https://access.redhat.com/articles/3136551 ### Process a template, create a new binary build to customize something and them change the DeploymentConfig to use the new Image... ``` -
rafaeltuelho revised this gist
Aug 21, 2018 . 1 changed file with 80 additions and 57 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,33 @@ # My Openshift Cheatsheet ### Process a template, create a new binary build to customize something and them change the DeploymentConfig to use the new Image... ``` oc process openshift//datagrid72-basic | oc create -f - oc new-build --name=customdg -i openshift/jboss-datagrid72-openshift:1.0 --binary=true --to='customdg:1.0' oc set triggers dc/datagrid-app --from-image=openshift/jboss-datagrid72-openshift:1.0 --remove oc set triggers dc/datagrid-app --from-image=customdg:1.0 -c datagrid-app ``` ### Copy file content from a specific image to local file system ``` docker run registry.access.redhat.com/jboss-datagrid-7/datagrid72-openshift:1.0 /bin/sh -c 'cat /opt/datagrid/standalone/configuration/clustered-openshift.xml' > clustered-openshift.xml ``` ### set the default storage-class ``` oc patch storageclass glusterfs-storage -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' ``` ### Change Default response timeout for a specific route: ``` oc annotate route <route_name> --overwrite haproxy.router.openshift.io/timeout=10s ``` ### Add a nodeSelector on RC ou DC ``` oc patch dc|rc <dc_name> -p "spec: template: @@ -18,27 +36,27 @@ oc patch dc|rc <dc_name> -p "spec: region: infra" ``` ### Binary Builds ``` oc new-build --binary=true --name=ola2 --image-stream=redhat-openjdk18-openshift --to='mycustom-jdk8:1.0' oc start-build ola2 --from-file=./target/ola.jar --follow oc new-app ``` ### Turn off/on DC triggers to do a batch of changes without spam many deployments ``` oc rollout pause dc <dc name> oc rollout resume dc <dc name> ``` ### get a route URL using OC ``` http://$(oc get route nexus3 --template='{{ .spec.host }}') ``` ### Using Nexus repo manager to store deployment artifacts Maven uses settings.xml in $HOME/.m2 for configuration outside of pom.xml: ```xml <?xml version="1.0"?> <settings> <mirrors> @@ -62,7 +80,6 @@ Maven uses settings.xml in $HOME/.m2 for configuration outside of pom.xml: Maven can automatically store artifacts using -DaltDeploymentRepository parameter for deploy task: ``` mvn deploy -DskipTests=true \ -DaltDeploymentRepository= nexus::default::http://nexus3.nexus.svc.cluster.local:8081/repository/releases ``` @@ -85,13 +102,13 @@ OC_EDITOR="vim" oc edit dc/<your_dc> ``` ### BuildConfig with Source pull secrets ``` oc secrets new-basicauth gogs-basicauth --username=<your gogs login> --password=<gogs pwd> oc set build-secret --source bc/tasks gogs-basicauth ``` ### Create a configmap file and mount as a volume on DC ``` oc create configmap myconfigfile --from-file=./configfile.txt oc set volumes dc/printenv --add --overwrite=true --name=config-volume --mount-path=/data -t configmap --configmap-name=myconfigfile @@ -104,38 +121,39 @@ oc env dc/printenv --from=secret/mysec oc set volume dc/printenv --add --name=db-config-volume --mount-path=/dbconfig --secret-name=printenv-db-secret ``` ### Configure Liveness/Readiness probes on DCs ``` oc set probe dc cotd1 --liveness -- echo ok oc set probe dc/cotd1 --readiness --get-url=http://:8080/index.php --initial-delay-seconds=2 ``` ### Create a new JOB ``` oc run pi --image=perl --replicas=1 --restart=OnFailure \ --command -- perl -Mbignum=bpi -wle 'print bpi(2000)' ``` ### CRON JOB ``` oc run pi --image=perl --schedule='*/1 * * * *' \ --restart=OnFailure --labels parent="cronjobpi" \ --command -- perl -Mbignum=bpi -wle 'print bpi(2000)' ``` ### A/B Deployments - Split route trafic between services ``` oc expose service cotd1 --name='abcotd' -l name='cotd' oc set route-backends abcotd --adjust cotd2=+20% oc set route-backends abcotd cotd1=50 cotd2=50 ``` ### to pull an image directly from red hat offcial docker registry ``` docker pull registry.access.redhat.com/jboss-eap-6/eap64-openshift ``` ### to validate a openshift/kubernates resource definition (json/yaml file) in order to find malformed/sintax problems ``` oc create --dry-run --validate -f openshift/template/tomcat6-docker-buildconfig.yaml ``` @@ -146,13 +164,13 @@ oc create --dry-run --validate -f openshift/template/tomcat6-docker-buildconfig. * to enable cluster GC * https://docs.openshift.com/container-platform/3.3/admin_guide/garbage_collection.html ### to get current user Barear Auth Token ``` oc whoami -t ``` ### to test Master API ``` curl -k -H "Authorization: Bearer <api_token>" https://<master_host>:8443/api/v1/namespaces/<projcet_name>/pods/https:<pod_name>:8778/proxy/jolokia/ @@ -161,20 +179,20 @@ curl -k -H "Authorization: Bearer <api_token>" https://<master_host>:8443/api/v1 curl -k -H "Authorization: Bearer <api_token>" https://<master_host>:8443/api/v1/namespaces/<projcet_name>/pods/https:<pod_name>:8778/proxy/jolokia//read/java.lang:type\=Memory/HeapMemoryUsage | jq . ``` ### to login via CLI `oc` ``` oc login --username=tuelho --insecure-skip-tls-verify --server=https://master00-${guid}.oslab.opentlc.com:8443 ### to login as Cluster Admin through master host oc login -u system:admin -n openshift ``` ### to view the cluster roles and their associated rule sets in the cluster policy ``` oc describe clusterPolicy default ``` ### add a role to user ``` #local binding oadm policy add-role-to-user <role> <username> @@ -183,28 +201,28 @@ oadm policy add-role-to-user <role> <username> oadm policy add-cluster-role-to-user <role> <username> ``` ### allow containers run with root user inside openshift ``` oadm policy add-scc-to-user anyuid -z default ``` > for more details consult: https://docs.openshift.com/enterprise/3.1/admin_guide/manage_authorization_policy.html ### to test a POD service locally ``` ip=`oc describe pod hello-openshift|grep IP:|awk '{print $2}'` curl http://${ip}:8080 ``` ### to access a POD container shell ``` oc exec -ti `oc get pods | awk '/registry/ { print $1; }'` /bin/bash #new way to do the same: oc rsh <container-name> ``` ### to edit an object/resource ``` oc edit <object_type>/<object_name> @@ -213,7 +231,7 @@ oc edit <object_type>/<object_name> oc edit dc/myDeploymentConfig ``` ### Ataching a new `PersistentVolumeClaim` to a `DeploymentConfig` ``` oc volume dc/docker-registry \ @@ -222,49 +240,52 @@ oc volume dc/docker-registry \ --claim-name=registry-claim \ --name=registry-storage ``` ### Docker builder app creation ``` oc new-app --docker-image=openshift/hello-openshift:v1.0.6 -l "todelete=yes" ``` ### To create an app using a template (`eap64-basic-s2i`): Ticketmonster demo ``` oc new-app javaee6-demo oc new-app --template=eap64-basic-s2i -p=APPLICATION_NAME=ticketmonster,SOURCE_REPOSITORY_URL=https://github.com/jboss-developer/ticket-monster,SOURCE_REPOSITORY_REF=2.7.0.Final,CONTEXT_DIR=demo ``` ### STI app creation ``` oc new-app https://github.com/openshift/sinatra-example -l "todelete=yes" oc new-app openshift/php~https://github.com/openshift/sti-php -l "todelete=yes" ``` ### To watch a build process log ``` oc get builds oc logs -f builds/sti-php-1 ``` ### To create application using Git repository at current directory: ``` $ oc new-app ``` ### To create application using remote Git repository and context subdirectory: ``` $ oc new-app https://github.com/openshift/sti-ruby.git \ --context-dir=2.0/test/puma-test-app ``` ### To create application using remote Git repository with specific branch reference: ``` $ oc new-app https://github.com/openshift/ruby-hello-world.git#beta4 ``` > New App From Source Code > > Build Strategy Detection @@ -278,35 +299,35 @@ $ oc new-app https://github.com/openshift/ruby-hello-world.git#beta4 $ oc new-app /home/user/code/myapp --strategy=docker ``` ### to create a definition generated by `oc new-app` command based on S2I support ``` $ oc new-app https://github.com/openshift/simple-openshift-sinatra-sti.git -o json | \ tee ~/simple-sinatra.json ``` ### To create application from MySQL image in Docker Hub: ``` $ oc new-app mysql ``` ### To create application from local registry: ``` $ oc new-app myregistry:5000/example/myimage ``` > If the registry that the image comes from is not secured with SSL, cluster administrators must ensure that the Docker daemon on the OpenShift Enterprise nodes is run with the --insecure-registry flag pointing to that registry. You must also use the `--insecure-registry=true` flag to tell new-app that the image comes from an insecure registry. ### To create application from stored template: ``` $ oc create -f examples/sample-app/application-template-stibuild.json $ oc new-app ruby-helloworld-sample ``` ### To set environment variables when creating application for database image: ``` $ oc new-app openshift/postgresql-92-centos7 \ @@ -315,7 +336,7 @@ $ oc new-app openshift/postgresql-92-centos7 \ -e POSTGRESQL_PASSWORD=password ``` ### To output new-app artifacts to file, edit them, then create them using oc create: ``` $ oc new-app https://github.com/openshift/ruby-hello-world -o json > myapp.json @@ -329,15 +350,16 @@ $ oc create -f myapp.json $ oc new-app nginx+mysql ``` ### To deploy together image built from source and external image: ``` $ oc new-app \ ruby~https://github.com/openshift/ruby-hello-world \ mysql \ --group=ruby+mysql ``` ### to export all the project's objects/resources as a single template: ``` $ oc export all --as-template=<template_name> @@ -352,12 +374,12 @@ $ oadm new-project instant-app --display-name="instant app example project" \ --node-selector='region=primary' --admin=andrew ``` ### to create an app using `oc` CLI based on a `template` ``` $ oc new-app --template=mysql-ephemeral --param=MYSQL_USER=mysqluser,MYSQL_PASSWORD=redhat,MYSQL_DATABASE=mydb,DATABASE_SERVICE_NAME=database ``` ### to see a list of `env` `vars` defined in a DeploymentConfig object ``` $ oc env dc database --list # deploymentconfigs database, container mysql @@ -367,7 +389,7 @@ MYSQL_DATABASE=*** ``` ### to manage enviorenmet variables in different ose objects types. The first adds, with value /data. The second updates, with value /opt. @@ -410,27 +432,28 @@ $ oc env <object-selection> --list [<common-options>] $ oc env pod/p1 --list ``` ### to apply some change (patch) ``` oc patch dc/<dc_name> \ -p '{"spec":{"template":{"spec":{"nodeSelector":{"nodeLabel":"logging-es-node-1"}}}}}' ``` ### to apply a vlome storage ``` oc volume dc/<dc_name> \ --add --overwrite --name=<volume_name> \ --type=persistentVolumeClaim --claim-name=<claim_name> ``` ### to make a node unschedulable in a cluster ``` oadm manage node <nome do node > --schedulable=false ``` ### to create a registry with storage-volume mounted on host ``` oadm registry --service-account=registry \ --config=/etc/origin/master/admin.kubeconfig \ @@ -439,12 +462,12 @@ oadm registry --service-account=registry \ --mount-host=<path> --selector=meuselector ``` ### to export all resources from a project/namespace as a template ``` oc export all --as-template=<template_name> ``` ### to create a build from a Dockerfile ``` # create the build @@ -459,7 +482,7 @@ oc new-app app-from-custom-docker-build -l app=app-from-custom-docker-build oc expose service app-from-custom-docker-build ``` ### to copy files to/from a POD ``` #Ref: https://docs.openshift.org/latest/dev_guide/copy_files_to_container.html @@ -493,7 +516,7 @@ oc rsync devpod1234:/src /home/user/source $ oadm pod-network make-projects-global ci ``` ### Adjust Master Log Level To adjust openshift-master log level, edit following line of `/etc/sysconfig/atomic-openshift-master` from master VM: ``` @@ -511,7 +534,7 @@ In node machine, to provide filtered information: # journalctl -f -u atomic-openshift-node ``` ### Enable EAP clustering/replication Make sure that your default service account has sufficient privileges to communicate with the Kubernetes REST API. Add the view role to serviceaccount for the project: @@ -654,7 +677,7 @@ EOF done ``` ### Patch PVs definitions ``` for pv in $(oc get pv|awk '{print $1}' | grep pv | grep -v NAME); do oc patch pv $pv -p "spec: -
rafaeltuelho revised this gist
Aug 20, 2018 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,9 @@ * set the default storage-class ``` oc patch storageclass glusterfs-storage -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' ``` * Change Default response timeout for a specific route: ``` oc annotate route <route_name> --overwrite haproxy.router.openshift.io/timeout=10s -
rafaeltuelho revised this gist
May 8, 2018 . 1 changed file with 11 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -647,4 +647,15 @@ spec: EOF echo "Created def file for ${volume}"; \ done ``` * Patch PVs definitions ``` for pv in $(oc get pv|awk '{print $1}' | grep pv | grep -v NAME); do oc patch pv $pv -p "spec: accessModes: - ReadWriteMany - ReadWriteOnce - ReadOnlyMany persistentVolumeReclaimPolicy: Recycle" ``` -
rafaeltuelho revised this gist
May 4, 2018 . 1 changed file with 77 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -571,4 +571,80 @@ $ oc process -f mysql-ephemeral.json \ $ oc create -f testdb.json ``` > oc process uses the -v option to provide parameter values, while oc new-app command uses the -p option. ### Create Definition Files for Volumes ``` ssh master00-$guid mkdir /root/pvs ``` ``` export volsize="5Gi" for volume in pv{1..25}; \ do \ cat << EOF > /root/pvs/${volume}.yaml apiVersion: v1 kind: PersistentVolume metadata: name: ${volume} spec: capacity: storage: ${volsize} accessModes: - ReadWriteOnce nfs: path: /var/export/pvs/${volume} server: 192.168.0.254 persistentVolumeReclaimPolicy: Recycle EOF echo "Created def file for ${volume}"; \ done ``` ``` export volsize="10Gi" for volume in pv{26..50}; \ do \ cat << EOF > /root/pvs/${volume}.yaml apiVersion: v1 kind: PersistentVolume metadata: name: ${volume} spec: capacity: storage: ${volsize} accessModes: - ReadWriteOnce nfs: path: /var/export/pvs/${volume} server: 192.168.0.254 persistentVolumeReclaimPolicy: Recycle EOF echo "Created def file for ${volume}"; \ done ``` ``` export volsize="1Gi" for volume in pv{51..100}; \ do \ cat << EOF > /root/pvs/${volume}.yaml apiVersion: v1 kind: PersistentVolume metadata: name: ${volume} spec: capacity: storage: ${volsize} accessModes: - ReadWriteOnce nfs: path: /var/export/pvs/${volume} server: 192.168.0.254 persistentVolumeReclaimPolicy: Recycle EOF echo "Created def file for ${volume}"; \ done ``` -
rafaeltuelho revised this gist
Apr 27, 2018 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,18 @@ * Change Default response timeout for a specific route: ``` oc annotate route <route_name> --overwrite haproxy.router.openshift.io/timeout=10s ``` * Add a nodeSelector on RC ou DC ``` oc patch dc|rc <dc_name> -p "spec: template: spec: nodeSelector: region: infra" ``` * Binary Builds ``` oc new-build --binary=true --name=ola2 --image-stream=redhat-openjdk18-openshift -
rafaeltuelho revised this gist
Apr 24, 2018 . 1 changed file with 11 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -506,6 +506,17 @@ Examine the first entry in the log file: Service account has sufficient permissions to view pods in kubernetes (HTTP 200). Clustering will be available. ``` ## OCP Internal VIP failover for Routers running on Infra nodes ``` oc adm ipfailover ipf-ha-router --replicas=2 --watch-port=80 \ --selector="region=infra" \ --virtual-ips="x.0.0.x" \ --iptables-chain="INPUT" \ --service-account=ipfailover --create ``` ## Creating a new Template * Common strategy for building template definitions: * Use oc new-app and oc expose to manually create resources application needs -
rafaeltuelho revised this gist
Aug 9, 2017 . 1 changed file with 10 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,16 @@ oc start-build ola2 --from-file=./target/ola.jar --follow oc new-app ``` * Turn off/on DC triggers to do a batch of changes without spam many deployments ``` oc rollout pause dc <dc name> oc rollout resume dc <dc name> ``` * get a route URL using OC ``` http://$(oc get route nexus3 --template='{{ .spec.host }}') ``` * Using Nexus repo manager to store deployment artifacts Maven uses settings.xml in $HOME/.m2 for configuration outside of pom.xml: -
rafaeltuelho revised this gist
Aug 9, 2017 . 1 changed file with 39 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,43 @@ * Binary Builds ``` oc new-build --binary=true --name=ola2 --image-stream=redhat-openjdk18-openshift oc start-build ola2 --from-file=./target/ola.jar --follow oc new-app ``` * Using Nexus repo manager to store deployment artifacts Maven uses settings.xml in $HOME/.m2 for configuration outside of pom.xml: ``` <?xml version="1.0"?> <settings> <mirrors> <mirror> <id>Nexus</id> <name>Nexus Public Mirror</name> <url>http://nexus-opentlc-shared.cloudapps.na.openshift.opentlc.com/content/groups/public/</url> <mirrorOf>*</mirrorOf> </mirror> </mirrors> <servers> <server> <id>nexus</id> <username>admin</username> <password>admin123</password> </server> </servers> </settings> ``` Maven can automatically store artifacts using -DaltDeploymentRepository parameter for deploy task: ``` mvn deploy -DskipTests=true \ -DaltDeploymentRepository= nexus::default::http://nexus3.nexus.svc.cluster.local:8081/repository/releases ``` * to update a DeploymentConfig in order to change the Docker Image used bythe POD's container ``` oc project <project> -
rafaeltuelho revised this gist
Aug 9, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -17,6 +17,12 @@ OC_EDITOR="vim" oc edit dc/<your_dc> ``` * BuildConfig with Source pull secrets ``` oc secrets new-basicauth gogs-basicauth --username=<your gogs login> --password=<gogs pwd> oc set build-secret --source bc/tasks gogs-basicauth ``` * Create a configmap file and mount as a volume on DC ``` oc create configmap myconfigfile --from-file=./configfile.txt -
rafaeltuelho revised this gist
Aug 8, 2017 . 1 changed file with 16 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -16,6 +16,20 @@ OC_EDITOR="vim" oc edit dc/<your_dc> imagePullPolicy: Always ``` * Create a configmap file and mount as a volume on DC ``` oc create configmap myconfigfile --from-file=./configfile.txt oc set volumes dc/printenv --add --overwrite=true --name=config-volume --mount-path=/data -t configmap --configmap-name=myconfigfile ``` * create a secret via CLI ``` oc create secret generic mysec --from-literal=app_user=superuser --from-literal=app_password=topsecret oc env dc/printenv --from=secret/mysec oc set volume dc/printenv --add --name=db-config-volume --mount-path=/dbconfig --secret-name=printenv-db-secret ``` * Configure Liveness/Readiness probes on DCs ``` oc set probe dc cotd1 --liveness -- echo ok @@ -472,7 +486,8 @@ $ oc export -o json -n openshift mysql-ephemeral > mysql-ephemeral.json ... change the mysql-ephemeral.json file ... $ oc process -f mysql-ephemeral.json \ -v MYSQL_DATABASE=testdb,MYSQL_USE=testuser,MYSQL_PASSWORD= > testdb.json $ oc create -f testdb.json ``` -
rafaeltuelho revised this gist
Aug 8, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -38,6 +38,7 @@ oc run pi --image=perl --schedule='*/1 * * * *' \ ``` oc expose service cotd1 --name='abcotd' -l name='cotd' oc set route-backends abcotd --adjust cotd2=+20% oc set route-backends abcotd cotd1=50 cotd2=50 ``` -
rafaeltuelho revised this gist
Aug 7, 2017 . 1 changed file with 11 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,18 @@ OC_EDITOR="vim" oc edit dc/<your_dc> oc set probe dc cotd1 --liveness -- echo ok oc set probe dc/cotd1 --readiness --get-url=http://:8080/index.php --initial-delay-seconds=2 ``` * Create a new JOB ``` oc run pi --image=perl --replicas=1 --restart=OnFailure \ --command -- perl -Mbignum=bpi -wle 'print bpi(2000)' ``` * CRON JOB ``` oc run pi --image=perl --schedule='*/1 * * * *' \ --restart=OnFailure --labels parent="cronjobpi" \ --command -- perl -Mbignum=bpi -wle 'print bpi(2000)' ``` * A/B Deployments - Split route trafic between services -
rafaeltuelho revised this gist
Aug 7, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -16,6 +16,12 @@ OC_EDITOR="vim" oc edit dc/<your_dc> imagePullPolicy: Always ``` * Configure Liveness/Readiness probes on DCs ``` oc set probe dc cotd1 --liveness -- echo ok oc set probe dc/cotd1 --readiness --get-url=http://:8080/index.php --initial-delay-seconds=2 ``` * A/B Deployments - Split route trafic between services -
rafaeltuelho revised this gist
Aug 7, 2017 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -17,6 +17,13 @@ OC_EDITOR="vim" oc edit dc/<your_dc> ``` * A/B Deployments - Split route trafic between services ``` oc expose service cotd1 --name='abcotd' -l name='cotd' oc set route-backends abcotd cotd1=50 cotd2=50 ``` * to pull an image directly from red hat offcial docker registry ``` docker pull registry.access.redhat.com/jboss-eap-6/eap64-openshift -
rafaeltuelho revised this gist
Aug 6, 2017 . 1 changed file with 14 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -438,4 +438,17 @@ oc new-app -o json openshift/hello-openshift > hello.json * to list all parameters from mysql-persistent template: ``` $ oc process --parameters=true -n openshift mysql-persistent ``` * Customizing resources from a preexisting Template Example: ``` $ oc export -o json -n openshift mysql-ephemeral > mysql-ephemeral.json ... change the mysql-ephemeral.json file ... $ oc process -f mysql-ephemeral.json \ -v MYSQL_DATABASE=testdb,MYSQL_USE=testuser,MYSQL_PASSWORD=secret > testdb.json $ oc create -f testdb.json ``` > oc process uses the -v option to provide parameter values, while oc new-app command uses the -p option. -
rafaeltuelho renamed this gist
Aug 6, 2017 . 1 changed file with 7 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -432,4 +432,10 @@ oc new-app -o json openshift/hello-openshift > hello.json * Make two changes to metadata object: * Add name attribute and value so template has name users can refer to * Add annotations containing description attribute for template, so users know what template is supposed to do. * Rename items array attribute as objects ## Working with Templates * to list all parameters from mysql-persistent template: ``` $ oc process --parameters=true -n openshift mysql-persistent ``` -
rafaeltuelho revised this gist
Aug 6, 2017 . 1 changed file with 23 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -410,4 +410,26 @@ Examine the first entry in the log file: ``` Service account has sufficient permissions to view pods in kubernetes (HTTP 200). Clustering will be available. ``` ## Creating a new Template * Common strategy for building template definitions: * Use oc new-app and oc expose to manually create resources application needs * Test to make sure resources work as expected * Use oc export with -o json option to export existing resource definitions * Merge resource definitions into template definition file * Add parameters * Test resource definition in another project > JSON syntax errors are not easy to identify, and OpenShift is sensitive to them, refusing JSON files that most browsers would accept as valid. Use jsonlint -s from the python-demjson package, available from EPEL, to identify syntax issues in a JSON resource definition file. * Use `oc new-app` with `-o json` option to bootstrap your new template definition file ``` oc new-app -o json openshift/hello-openshift > hello.json ``` * Converting the Resource Definition to a Template * Change kind attribute from List to Template * Make two changes to metadata object: * Add name attribute and value so template has name users can refer to * Add annotations containing description attribute for template, so users know what template is supposed to do. * Rename items array attribute as objects
NewerOlder