I am creating secrets in OpenShift using oc as below :
oc create secret generic mysecret --from-
literal=jdbc.mmi.driverClassName=something --from-
literal=jdbc.mmi.userid=something --from-literal=jdbc.mmi.password=something
-from-literal=jdbc.mmi.url=something;databaseName=somedatabasename
In the above command openShift is not taking value after semicolon ;databaseName=somedatabasename
How to handle such kind of value in openshift ?
Try quoting the value. An unquoted ;
terminates the command