Don’t forget to select tags to help index your topic!
1. Describe your incident:
I have registered graylog instance in azure as enterprise app. Trying to create service as mentioned in OIDC Configuration but clicking on “Create Service” but not bringing up any page where I can enter details as mentioned in the post.
I have checked the server logs & developer tool windows of browser but I don’t see any error. Look like clicking button has no impact at all.
I tried searched jar files for graylog-enterprise-plugins graylog-integrations-plugins graylog-enterprise-integrations-plugins plugins but I could not locate any.
As I mentioned in my question I am using helm chart to deploy cluster on Azure Kubernetes Services and I would need jar for all of these plugins. Sample plugin installation section look like below.
plugins:
## If true, set proxy server to retrieve the plugins
##
proxy:
enabled: false
host: http://your.proxy.host:8080
locations: []
# - name: graylog-plugin-slack-notification-4.1.1.jar
# url: https://github.com/KongZ/graylog-plugin-slack-notification/releases/download/v4.1.1/graylog-plugin-slack-notification-4.1.1.jar
# - name: graylog-plugin-function-check-diff-1.0.1.jar
# url: https://github.com/KongZ/graylog-plugin-function-check-diff/releases/download/v1.0.1/graylog-plugin-function-check-diff-1.0.1.jar
# - name: graylog-plugin-google-cloud-pubsub-1.0.4.jar
# url: https://github.com/KongZ/graylog-plugin-google-cloud-pubsub/releases/download/v1.0.4/graylog-plugin-google-cloud-pubsub-1.0.4.jar
# - name: graylog-plugin-auth-sso-3.3.0.jar
# url: https://github.com/Graylog2/graylog-plugin-auth-sso/releases/download/3.3.0/graylog-plugin-auth-sso-3.3.0.jar
Question is from where I can get jar for these plugins?
Just chiming, I noticed your using Azure Kubernetes /Helm. Im unfamialr with those BUT as for docker images I pull mine from here not sure if you can use those.
Thank you for chiming in. As I said, I am using AKS and helm chart so I would need plugins in jar form. I can not install the way you have suggested. I am using Docker Hub image from my helm chart.
Finally managed to solve the problem. Thank you @tmacgbay for letting me know which plugins are required. Without your help it was impossible. Thank you @gsmith too!!!
Updated plugin section as below in values.yaml and redeploy helm chart.
## Additional plugins you need to install on Graylog.
plugins:
## If true, set proxy server to retrieve the plugins
##
proxy:
enabled: false
host: http://your.proxy.host:8080
locations:
- name: graylog-enterprise-plugins-4.3.7.tgz
url: https://packages.graylog2.org/releases/graylog-enterprise/graylog-enterprise-plugins-4.3.7.tgz
- name: graylog-integrations-plugins-4.3.7.tgz
url: https://packages.graylog2.org/releases/graylog-integrations/graylog-integrations-plugins-4.3.7.tgz
- name: graylog-enterprise-integrations-plugins-4.3.7.tgz
url: https://packages.graylog2.org/releases/graylog-enterprise-integrations/graylog-enterprise-integrations-plugins-4.3.7.tgz
I can now see OIDC option in services which was not there earlier.
And big discovery. This is enterprise feature which requires license.
I am guessing if you are putting it together with Helm Chart you will go over that… the purchased version have even better support (But not by much… haha)