Explorar el Código

Deployed f74e0854 to main with MkDocs 1.6.0 and mike 1.2.0.dev0

Skarlso hace 2 años
padre
commit
c00dd39250

+ 6 - 1
main/api/clustersecretstore/index.html

@@ -3361,7 +3361,7 @@
 
 
 <span class="w">  </span><span class="c1"># Conditions about namespaces in which the ClusterSecretStore is usable for ExternalSecrets</span>
 <span class="w">  </span><span class="c1"># Conditions about namespaces in which the ClusterSecretStore is usable for ExternalSecrets</span>
 <span class="w">  </span><span class="nt">conditions</span><span class="p">:</span>
 <span class="w">  </span><span class="nt">conditions</span><span class="p">:</span>
-<span class="w">    </span><span class="c1"># Options are namespaceSelector, or namespaces</span>
+<span class="w">    </span><span class="c1"># Options are namespaceSelector, namespaces or namespacesRegex</span>
 <span class="w">    </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="nt">namespaceSelector</span><span class="p">:</span>
 <span class="w">    </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="nt">namespaceSelector</span><span class="p">:</span>
 <span class="w">        </span><span class="nt">matchLabels</span><span class="p">:</span>
 <span class="w">        </span><span class="nt">matchLabels</span><span class="p">:</span>
 <span class="w">          </span><span class="nt">my.namespace.io/some-label</span><span class="p">:</span><span class="w"> </span><span class="s">&quot;value&quot;</span><span class="w"> </span><span class="c1"># Only namespaces with that label will work</span>
 <span class="w">          </span><span class="nt">my.namespace.io/some-label</span><span class="p">:</span><span class="w"> </span><span class="s">&quot;value&quot;</span><span class="w"> </span><span class="c1"># Only namespaces with that label will work</span>
@@ -3370,6 +3370,11 @@
 <span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-a&quot;</span>
 <span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-a&quot;</span>
 <span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-b&quot;</span>
 <span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-b&quot;</span>
 
 
+<span class="w">    </span><span class="c1"># Namespace regex is helpful for namespace naming convention or when an external tool auto generate namespaces with prefix</span>
+<span class="w">    </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="nt">namespacesRegex</span><span class="p">:</span>
+<span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-a-.*&quot;</span><span class="w"> </span><span class="c1"># All namespaces prefixed by namespace-a- will work</span>
+<span class="w">        </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="s">&quot;namespace-b-.*&quot;</span><span class="w"> </span><span class="c1"># All namespaces prefixed by namespace-b- will work</span>
+
 <span class="w">    </span><span class="c1"># conditions needs only one of the conditions to meet for the CSS to be usable in the namespace.</span>
 <span class="w">    </span><span class="c1"># conditions needs only one of the conditions to meet for the CSS to be usable in the namespace.</span>
 
 
 <span class="nt">status</span><span class="p">:</span>
 <span class="nt">status</span><span class="p">:</span>

+ 13 - 0
main/api/spec/index.html

@@ -5016,9 +5016,22 @@ Kubernetes meta/v1.LabelSelector
 </em>
 </em>
 </td>
 </td>
 <td>
 <td>
+<em>(Optional)</em>
 <p>Choose namespaces by name</p>
 <p>Choose namespaces by name</p>
 </td>
 </td>
 </tr>
 </tr>
+<tr>
+<td>
+<code>namespaceRegexes</code></br>
+<em>
+[]string
+</em>
+</td>
+<td>
+<em>(Optional)</em>
+<p>Choose namespaces by using regex matching</p>
+</td>
+</tr>
 </tbody>
 </tbody>
 </table>
 </table>
 <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
 <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
main/search/search_index.json


BIN
main/sitemap.xml.gz


+ 6 - 1
main/snippets/full-cluster-secret-store.yaml

@@ -142,7 +142,7 @@ spec:
 
 
   # Conditions about namespaces in which the ClusterSecretStore is usable for ExternalSecrets
   # Conditions about namespaces in which the ClusterSecretStore is usable for ExternalSecrets
   conditions:
   conditions:
-    # Options are namespaceSelector, or namespaces
+    # Options are namespaceSelector, namespaces or namespacesRegex
     - namespaceSelector:
     - namespaceSelector:
         matchLabels:
         matchLabels:
           my.namespace.io/some-label: "value" # Only namespaces with that label will work
           my.namespace.io/some-label: "value" # Only namespaces with that label will work
@@ -151,6 +151,11 @@ spec:
         - "namespace-a"
         - "namespace-a"
         - "namespace-b"
         - "namespace-b"
 
 
+    # Namespace regex is helpful for namespace naming convention or when an external tool auto generate namespaces with prefix
+    - namespacesRegex:
+        - "namespace-a-.*" # All namespaces prefixed by namespace-a- will work
+        - "namespace-b-.*" # All namespaces prefixed by namespace-b- will work
+
     # conditions needs only one of the conditions to meet for the CSS to be usable in the namespace.
     # conditions needs only one of the conditions to meet for the CSS to be usable in the namespace.
 
 
 status:
 status:

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio