16.2.13 Restoring After a Failed Upgrade
If the upgrade fails at any point, you can restore back to the Oracle Identity Governance
12c deployment using the following steps:
- Shut down the OIG 14c deployment using the following
command:
For example:kubectl patch domain <domain> -n <domain_namespace> --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
The output will look similar to the following:kubectl patch domain governancedomain -n oigns --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
domain.weblogic.oracle/governancedomain patched
- Run the following kubectl command to view the
pods:
For example:kubectl get pods -n <domain_namespace>
The output will look similar to the following:kubectl get pods -n oigns
NAME READY STATUS RESTARTS AGE governancedomain-adminserver 1/1 Terminating 0 16m governancedomain-soa-server1 1/1 Terminating 0 13m governancedomain-oim-server1 1/1 Terminating 0 5m22s
The Administration Server pods and Managed Server pods will move to a
STATUS
ofTerminating
.After a few minutes, run the command again and make sure the pods should have disappeared before continuing.
- Restore the persistent volume from the backup taken before the upgrade:
sudo cp -rp <persistent_volume>/governancedomainpv <persistent_volume>/governancedomain_bkp14c
sudo rm -rf <persistent_volume>/governancedomainpv
For example:sudo cp -rp <persistent_volume>/governancedomainpv_bkp12c <persistent_volume>/governancedomain
sudo cp -rp /nfs_volumes/oig/governancedomainpv /nfs_volumes/oig/governancedomain_bkp14c
sudo rm -rf /nfs_volumes/oig/governancedomainpv
sudo cp -rp /nfs_volumes/oig/governancedomainpv_bkp12c /nfs_volumes/oig/governancedomain
- Restore the Oracle Database from the backup taken before the upgrade.
- Run the following command to update the deployment with the OIG 12c container image
used previously:
For example:kubectl patch domain %DOMAIN_UID% -n %NAMESPACE% --type merge -p '{"spec":{"image":"%WEBLOGIC_IMAGE%"}}'
- If using Oracle Container Registry or your own container registry for your OIG
container
image:
kubectl patch domain governancedomain -n oigns \ --type merge -p '{"spec":{"image":"
container-registry.oracle.com/middleware/oig_cpu:12.2.1.4-jdk8-ol8-<YYMMDD>
"}}' - If you are not using a container registry and have loaded the image on each of
the worker
nodes:
The output will look similar to the following:kubectl patch domain governancedomain -n oigns \ --type merge -p '{"spec":{"image":"oracle/oig:12.2.1.4.0"}}'
domain.weblogic.oracle/governancedomain patched
- If using Oracle Container Registry or your own container registry for your OIG
container
image:
- Run the following command to start the OIG
domain:
For example:kubectl patch domain.v9.weblogic.oracle "%DOMAIN_UID%" -n "%NAMESPACE%" \ --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
The output will look similar to the following:kubectl patch domain.v9.weblogic.oracle "governancedomain" -n "oigns" \ --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
domain.weblogic.oracle/governancedomain patched
- Downgrade the WebLogic Kubernetes Operator to a version supported by OIG 12c. Follow the instructions at Updating the WebLogic Kubernetes Operator, but use a supported operator for OIG 12c.
- Run the following command to view the
pods:
For example:kubectl get pods -n %NAMESPACE%
The output will look similar to the following:kubectl get pods -n oigns
The introspect job will start, followed by the Administration Server pod, and then the OIG server pods. This process will take several minutes, so keep executing the command until all the pods are running withNAME READY STATUS RESTARTS AGE governancedomain-introspector-jwqxw 1/1 Running 0 10s
READY
status1/1
:Note:
Alternatively, you can add the watch flag,-w
, which allows you watch the status of the pods as they change.NAME READY STATUS RESTARTS AGE governancedomain-adminserver 1/1 Running 0 16m governancedomain-soa-server1 1/1 Running 0 13m governancedomain-oim-server1 1/1 Running 0 5m22s
- Once everything is running, check the consoles are accessible as per Validating the Domain URLs.