.TH "OC" "1" " Openshift CLI User Manuals" "Openshift" "June 2016"  ""


.SH NAME
.PP
oc observe \- Observe changes to resources and react to them (experimental)


.SH SYNOPSIS
.PP
\fBoc observe\fP [OPTIONS]


.SH DESCRIPTION
.PP
Observe changes to resources and take action on them

.PP
This command assists in building scripted reactions to changes that occur in Kubernetes or OpenShift resources. This is frequently referred to as a 'controller' in Kubernetes and acts to ensure particular conditions are maintained. On startup, observe will list all of the resources of a particular type and execute the provided script on each one. Observe watches the server for changes, and will reexecute the script for each update.

.PP
Observe works best for problems of the form "for every resource X, make sure Y is true". Some examples of ways observe can be used include:
.IP 

.IP
\(bu Ensure every namespace has a quota or limit range object
.br
.IP
\(bu Ensure every service is registered in DNS by making calls to a DNS API
.br
.IP
\(bu Send an email alert whenever a node reports 'NotReady'
.br
.IP
\(bu Watch for the 'FailedScheduling' event and write an IRC message
.br
.IP
\(bu Dynamically provision persistent volumes when a new PVC is created
.br
.IP
\(bu Delete pods that have reached successful completion after a period of time.
.br
.PP
The simplest pattern is maintaining an invariant on an object \- for instance, "every namespace should have an annotation that indicates its owner". If the object is deleted no reaction is necessary. A variation on that pattern is creating another object: "every namespace should have a quota object based on the resources allowed for an owner".

.PP
$ cat set\_owner.sh
  #!/bin/sh
  if [[ "$(oc get namespace "$1" \-\-template='{{ .metadata.annotations.owner }}')" == "" ]]; then
    oc annotate namespace "$1" owner=bob
  fi

.PP
$ oc observe namespaces \-\- ./set\_owner.sh

.PP
The set \_owner.sh script is invoked with a single argument (the namespace name) for each namespace. This simple script ensures that any user without the "owner" annotation gets one set, but preserves any existing value.

.PP
The next common of controller pattern is provisioning \- making changes in an external system to match the state of a Kubernetes resource. These scripts need to account for deletions that may take place while the observe command is not running. You can provide the list of known objects via the \-\-names command, which should return a newline\-delimited list of names or namespace/name pairs. Your command will be invoked whenever observe checks the latest state on the server \- any resources returned by \-\-names that are not found on the server will be passed to your \-\-delete command.

.PP
For example, you may wish to ensure that every node that is added to Kubernetes is added to your cluster inventory along with its IP:

.PP
$ cat add\_to\_inventory.sh
  #!/bin/sh
  echo "$1 $2" >> inventory
  sort \-u inventory \-o inventory

.PP
$ cat remove\_from\_inventory.sh
  #!/bin/sh
  grep \-vE "^$1 " inventory > /tmp/newinventory
  mv \-f /tmp/newinventory inventory

.PP
$ cat known\_nodes.sh
  #!/bin/sh
  touch inventory
  cut \-f 1\-1 \-d ' ' inventory

.PP
$ oc observe nodes \-a '{ .status.addresses[0].address }' \\
    \-\-names ./known\_nodes.sh \\
    \-\-delete ./remove\_from\_inventory.sh \\
    \-\- ./add\_to\_inventory.sh

.PP
If you stop the observe command and then delete a node, when you launch observe again the contents of inventory will be compared to the list of nodes from the server, and any node in the inventory file that no longer exists will trigger a call to remove from inventory.sh with the name of the node.

.PP
Important: when handling deletes, the previous state of the object may not be available and only the name/namespace of the object will be passed to   your \-\-delete command as arguments (all custom arguments are omitted).

.PP
More complicated interactions build on the two examples above \- your inventory script could make a call to allocate storage on your infrastructure as a service, or register node names in DNS, or set complex firewalls. The more complex your integration, the more important it is to record enough data in the remote system that you can identify when resources on either side are deleted.

.PP
Experimental: This command is under active development and may change without notice.


.SH OPTIONS
.PP
\fB\-\-all\-namespaces\fP=false
    If true, list the requested object(s) across all projects. Project in current context is ignored.

.PP
\fB\-a\fP, \fB\-\-argument\fP=""
    Template for the arguments to be passed to each command in the format defined by \-\-output.

.PP
\fB\-d\fP, \fB\-\-delete\fP=""
    A command to run when resources are deleted. Specify multiple times to add arguments.

.PP
\fB\-\-exit\-after\fP=0
    Exit with status code 0 after the provided duration, optional.

.PP
\fB\-\-listen\-addr\fP=":11251"
    The name of an interface to listen on to expose metrics and health checking.

.PP
\fB\-\-maximum\-errors\fP=20
    Exit after this many errors have been detected with. May be set to \-1 for no maximum.

.PP
\fB\-\-names\fP=""
    A command that will list all of the currently known names, optional. Specify multiple times to add arguments. Use to get notifications when objects are deleted.

.PP
\fB\-\-no\-headers\fP=false
    If true, skip printing information about each event prior to executing the command.

.PP
\fB\-\-object\-env\-var\fP=""
    The name of an env var to serialize the object to when calling the command, optional.

.PP
\fB\-\-once\fP=false
    If true, exit with a status code 0 after all current objects have been processed.

.PP
\fB\-\-output\fP="jsonpath"
    Controls the template type used for the \-\-argument flags. Supported values are gotemplate and jsonpath.

.PP
\fB\-\-print\-metrics\-on\-exit\fP=false
    If true, on exit write all metrics to stdout.

.PP
\fB\-\-resync\-period\fP=0
    When non\-zero, periodically reprocess every item from the server as a Sync event. Use to ensure external systems are kept up to date. Requires \-\-names

.PP
\fB\-\-retry\-count\fP=2
    The number of times to retry a failing command before continuing.

.PP
\fB\-\-retry\-on\-exit\-code\fP=0
    If any command returns this exit code, retry up to \-\-retry\-count times.

.PP
\fB\-\-strict\-templates\fP=false
    If true return an error on any field or map key that is not missing in a template.

.PP
\fB\-\-type\-env\-var\fP=""
    The name of an env var to set with the type of event received ('Sync', 'Updated', 'Deleted', 'Added') to the reaction command or \-\-delete.


.SH OPTIONS INHERITED FROM PARENT COMMANDS
.PP
\fB\-\-api\-version\fP=""
    DEPRECATED: The API version to use when talking to the server

.PP
\fB\-\-as\fP=""
    Username to impersonate for the operation

.PP
\fB\-\-certificate\-authority\fP=""
    Path to a cert. file for the certificate authority

.PP
\fB\-\-client\-certificate\fP=""
    Path to a client certificate file for TLS

.PP
\fB\-\-client\-key\fP=""
    Path to a client key file for TLS

.PP
\fB\-\-cluster\fP=""
    The name of the kubeconfig cluster to use

.PP
\fB\-\-config\fP=""
    Path to the config file to use for CLI requests.

.PP
\fB\-\-context\fP=""
    The name of the kubeconfig context to use

.PP
\fB\-\-google\-json\-key\fP=""
    The Google Cloud Platform Service Account JSON Key to use for authentication.

.PP
\fB\-\-insecure\-skip\-tls\-verify\fP=false
    If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure

.PP
\fB\-\-log\-flush\-frequency\fP=0
    Maximum number of seconds between log flushes

.PP
\fB\-\-match\-server\-version\fP=false
    Require server version to match client version

.PP
\fB\-n\fP, \fB\-\-namespace\fP=""
    If present, the namespace scope for this CLI request

.PP
\fB\-\-request\-timeout\fP="0"
    The length of time to wait before giving up on a single server request. Non\-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests.

.PP
\fB\-\-server\fP=""
    The address and port of the Kubernetes API server

.PP
\fB\-\-token\fP=""
    Bearer token for authentication to the API server

.PP
\fB\-\-user\fP=""
    The name of the kubeconfig user to use


.SH EXAMPLE
.PP
.RS

.nf
  # Observe changes to services
  oc observe services
  
  # Observe changes to services, including the clusterIP and invoke a script for each
  oc observe services \-a '{ .spec.clusterIP }' \-\- register\_dns.sh

.fi
.RE


.SH SEE ALSO
.PP
\fBoc(1)\fP,


.SH HISTORY
.PP
June 2016, Ported from the Kubernetes man\-doc generator