Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can we grant all non-cluster-admin-users access to index pattern project.* #194

Open
MastanaGuru opened this issue Sep 9, 2020 · 0 comments

Comments

@MastanaGuru
Copy link

I am creating some generic dashboards which uses index-pattern project.* But since users have access to only their projects, a user has to build a dashboard for each of their project. In OCP 3.11, how can we grant project.* access to all non-cluster-admin users or access to all projects starting with project.es-* ?

searchSourceJSON": "{
  "index": "project.*",
  "highlight": {
    "pre_tags": [
      "@kibana-highlighted-field@"
    ],
    "post_tags": [
      "@/kibana-highlighted-field@"
    ],
    "fields": {
      "*": {
      }
    },
    "fragment_size": 2147483647
  },
  "filter": [

  ],
  "query": {
    "query_string": {
      "query": "type:liberty_*",
      "analyze_wildcard": true
    }
  }
}"

or 

searchSourceJSON": "{
  "index": "project.es-*",
  "highlight": {
    "pre_tags": [
      "@kibana-highlighted-field@"
    ],
    "post_tags": [
      "@/kibana-highlighted-field@"
    ],
    "fields": {
      "*": {
      }
    },
    "fragment_size": 2147483647
  },
  "filter": [

  ],
  "query": {
    "query_string": {
      "query": "type:liberty_*",
      "analyze_wildcard": true
    }
  }
}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant