Class SkaffoldWatchParameters


  • public class SkaffoldWatchParameters
    extends java.lang.Object
    Skaffold specific JibExtension parameters for configuring files to watch.
    • Constructor Summary

      Constructors 
      Constructor Description
      SkaffoldWatchParameters​(org.gradle.api.Project project)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Set<java.nio.file.Path> getBuildIncludes()
      A set of absolute paths to include with skaffold watching.
      java.util.Set<java.nio.file.Path> getExcludes()
      A set of absolute paths to exclude from skaffold watching.
      java.util.Set<java.nio.file.Path> getIncludes()
      A set of absolute paths to include with skaffold watching.
      void setBuildIncludes​(java.lang.Object paths)
      Sets includes.
      void setExcludes​(java.lang.Object paths)
      Sets excludes.
      void setIncludes​(java.lang.Object paths)
      Sets includes.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SkaffoldWatchParameters

        @Inject
        public SkaffoldWatchParameters​(org.gradle.api.Project project)
    • Method Detail

      • getBuildIncludes

        @Internal
        public java.util.Set<java.nio.file.Path> getBuildIncludes()
        A set of absolute paths to include with skaffold watching.
        Returns:
        a set of absolute paths
      • setBuildIncludes

        public void setBuildIncludes​(java.lang.Object paths)
        Sets includes. includes can be any suitable object describing file paths convertible by Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).
        Parameters:
        paths - paths to set on includes
      • getIncludes

        @Internal
        public java.util.Set<java.nio.file.Path> getIncludes()
        A set of absolute paths to include with skaffold watching.
        Returns:
        a set of absolute paths
      • setIncludes

        public void setIncludes​(java.lang.Object paths)
        Sets includes. includes can be any suitable object describing file paths convertible by Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).
        Parameters:
        paths - paths to set on includes
      • getExcludes

        @Internal
        public java.util.Set<java.nio.file.Path> getExcludes()
        A set of absolute paths to exclude from skaffold watching.
        Returns:
        a set of absolute paths
      • setExcludes

        public void setExcludes​(java.lang.Object paths)
        Sets excludes. excludes can be any suitable object describing file paths convertible by Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).
        Parameters:
        paths - paths to set on excludes