matteo malvezzi
matteo malvezzi
It seems that you have downloaded the wrong ORDS version. DBoperator supports ords 21.4.3 the ; DBoperator with ords 22.2 is on the way
Right, this is the correct link
Make sure to set dbServer: equal to your hostname or scan name if you are using RAC , The parameter scanName: is redundant and is bound to be removed. To...
This issue should already be fixed and should be available in the next release. Can you please share your yaml file so that I can verify against the latest version?...
Testing wrong cdb name: problem does not reproduce - no crash. Please share your testcase ``` 16:45:10 oracle@mitk01:# diff pdb_create.yaml pdb_issue86.yaml 9c9 < cdbResName: "cdb-dev" --- > cdbResName: "cdb-dv" 2024-02-15T16:45:10Z...
There are two problems here 1) panic due to odd number of args passed to log function: this is fixed in the latest version and 2) the invalid database name;...
Issue fixed in the next release: example how to retrieve database connection alias ```kubectl describe dbcssystems.database.oracle.com dbcssystem-create |awk '( $0 ~ / Db Unique Name:/ ) { DB_UNIQUE_NAME=$4 } (...
What is the sequence of event leading to the ORA-65197? can you please specify list of kubectl commands used? did you attempt to delete resource using "kubectl delete pdbs pdbs1...
Issue reproduced in house working on it ` kubectl get pdbs -n pdbnamespace NAME CONNECT_STRING CDB NAME PDB NAME PDB STATE PDB SIZE STATUS MESSAGE pdb1 (DESCRIPTION=(CONNECT_TIMEOUT=90)(RETRY_COUNT=30)(RETRY_DELAY=10)(TRANSPORT_CONNECT_TIMEOUT=70)(LOAD_BALLANCE=ON)(ADDRESS=(PROTOCOL=TCP)(HOST=scan12.testrac.com)(PORT=1521)(IP=V4_ONLY))(LOAD_BALLANCE=ON)(ADDRESS=(PROTOCOL=TCP)(HOST=scan34.testrac.com)(PORT=1521)(IP=V4_ONLY))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=pdbdev))) DB12 pdbdev READ...
If you forget to specify the r.Spec.DropAction when you delete database then you get the default value which is KEEP. ``` // +kubebuilder:validation:Enum=INCLUDING;KEEP DropAction string `json:"dropAction,omitempty"` if action == "DELETE"...