Download and Unpack a TimesTen Distribution
- Download a TimesTen distribution to a
download_location
. - On your development host, from the directory of your choice:
-
Create one subdirectory for the TimesTen distribution. This example creates the
installation_dir
subdirectory. -
Create a second subdirectory for the TimesTen Operator distribution. This example creates the
kube_files
subdirectory.
mkdir -p installation_dir mkdir -p
kube_files
-
- Change to the TimesTen distribution subdirectory. Next, copy the TimesTen distribution that you previously downloaded into this subdirectory.
cd
installation_dir
cp download_location/timesten2211340.server.linux8664.zip
. - Unpack the TimesTen distribution.
unzip timesten2211340.server.linux8664.zip
The output is similar to the following:
Archive: timesten2211340.server.linux8664.zip creating: tt22.1.1.34.0/ ... creating: tt22.1.1.34.0/kubernetes/ extracting: tt22.1.1.34.0/kubernetes/operator.zip ...
The TimesTen Kubernetes Operator distribution isinstallation_dir/tt22.1.1.34.0/kubernetes/operator.zip
.Note:
Do not delete the TimesTen distribution. You need it later. - Change to the TimesTen Kubernetes Operator subdirectory you created in a previous step. (In this example,
kube_files
.) Next, unpack the TimesTen Kubernetes Operator distribution.cd kube_files unzip installation_dir/tt22.1.1.34.0/kubernetes/operator.zip
The output is similar to the following:Archive: installation_dir/tt22.1.1.34.0/kubernetes/operator.zip ... creating: helm/ creating: helm/ttclassic/ ... creating: helm/ttcrd/ ... creating: helm/ttoperator/ ... creating: deploy/ inflating: deploy/crd.yaml inflating: deploy/service_account.yaml inflating: deploy/service_account_cluster.yaml inflating: deploy/operator.yaml creating: image/ inflating: image/Dockerfile creating: operator/ ...