migrate from DB-less to postgres DB #13304
-
Hi All, Using kong 3.5.0 standalone installation (DB-less) in openshift cluster and like to know below 2 request please: Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
To my knowledge, there is no such document. Importing a declarative configuration file into Kong Gateway's database is possible using the
I'm not sure if I understand the question quite well. In dbless mode, your configuration is read from a file when Kong Gateway starts. Changes that are made to the configuration at run time are not persisted, and Kong Gateway does not update the declarative configuration file that was read at startup time |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply, we are running in openshift cluster where declarative configuration stores in ETCD. So we are thinking if its possible to extend our plugin with custom Admin API like here: https://docs.konghq.com/gateway/latest/plugin-development/admin-api/ |
Beta Was this translation helpful? Give feedback.
To my knowledge, there is no such document. Importing a declarative configuration file into Kong Gateway's database is possible using the
kong config db_import
command, which may be your best route.I'm not sure if I understand the question quite well. In dbless mode, your configuration is read from a file when Kong Gateway starts. Changes that are made to the configuration at run time are not persisted, and Kong …